- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 79 for netbios (0.32 sec)
-
src/main/java/jcifs/netbios/NodeStatusRequest.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.netbios; import jcifs.Configuration; class NodeStatusRequest extends NameServicePacket { NodeStatusRequest ( Configuration cfg, Name name ) { super(cfg); this.questionName = name;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameQueryRequest.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.netbios; import jcifs.Configuration; class NameQueryRequest extends NameServicePacket { NameQueryRequest ( Configuration config, Name name ) { super(config); this.questionName = name;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/Address.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; import java.net.InetAddress; import java.net.UnknownHostException; /** * Interface for both netbios and internet addresses * * @author mbechler * */ public interface Address { /** * * @param type * @return instance for type, null if the type cannot be unwrapped */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 03 13:22:30 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.netbios; import java.net.Socket; import jcifs.smb1.Config; import jcifs.smb1.util.LogStream; import java.net.InetAddress; import java.io.InputStream; import java.io.OutputStream; import java.io.IOException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Lmhosts.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.netbios; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.Reader; import java.util.HashMap;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
package jcifs.smb1.http; import java.io.*; import java.util.Enumeration; import java.net.UnknownHostException; import javax.servlet.*; import javax.servlet.http.*; import jcifs.smb1.*; import jcifs.smb1.netbios.NbtAddress; import jcifs.smb1.smb1.NtlmChallenge; import jcifs.smb1.smb1.NtlmPasswordAuthentication; import jcifs.smb1.smb1.SmbAuthException; import jcifs.smb1.smb1.SmbSession; import jcifs.smb1.util.Base64;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/ResolverType.java
/** * Enumeration of usable resolver types * * @author mbechler * */ public enum ResolverType { /** * Resolve using WINS server */ RESOLVER_WINS, /** * NETBIOS broadcast */ RESOLVER_BCAST, /** * DNS */ RESOLVER_DNS, /** * LMHosts file lookup */ RESOLVER_LMHOSTS
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Name.java
*/ package jcifs.smb1.netbios; import java.io.UnsupportedEncodingException; import jcifs.smb1.Config; import jcifs.smb1.util.Hexdump; public class Name { private static final int TYPE_OFFSET = 31; private static final int SCOPE_OFFSET = 33; private static final String DEFAULT_SCOPE = Config.getProperty( "jcifs.smb1.netbios.scope" ); static final String OEM_ENCODING =
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.netbios; import java.io.IOException; import java.io.InterruptedIOException; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; import java.net.SocketTimeoutException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtException.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.netbios; import jcifs.CIFSException; @SuppressWarnings ( "javadoc" ) public class NbtException extends CIFSException { /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.8K bytes - Viewed (0)