- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 114 for Vaddr (0.05 sec)
-
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
private int[] resolveOrder; InetAddress laddr, baddr; NameServiceClient() { this( LPORT, LADDR ); } NameServiceClient( int lport, InetAddress laddr ) { this.lport = lport; this.laddr = laddr; try { baddr = Config.getInetAddress( "jcifs.smb1.netbios.baddr", InetAddress.getByName( "255.255.255.255" ));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
request.isBroadcast = request.addr == null || isBroadcastAddress(request.addr); if ( request.isBroadcast ) { if ( request.addr == null ) { request.addr = this.baddr; } n = config.getNetbiosRetryCount(); } else { n = 1; } do { try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
internal/handlers/proxy.go
raddr, _, _ := net.SplitHostPort(addr) if raddr == "" { return addr } return raddr } // GetSourceIP retrieves the IP from the request headers // and falls back to r.RemoteAddr when necessary. func GetSourceIP(r *http.Request) string { addr := GetSourceIPRaw(r) if strings.ContainsRune(addr, ':') { return "[" + addr + "]" } return addr
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Dec 22 00:56:55 UTC 2023 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
} */ Object addr; String calledName; /** * Create a <tt>UniAddress</tt> by wrapping an <tt>InetAddress</tt> or * <tt>NbtAddress</tt>. */ public UniAddress( Object addr ) { if( addr == null ) { throw new IllegalArgumentException(); } this.addr = addr; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
String addr = prp.getProperty( "jcifs.smb1.smb.client.laddr" ); if (addr != null) { try { return InetAddress.getByName( addr ); } catch( UnknownHostException uhe ) { if( log.level > 0 ) { log.println( "Ignoring jcifs.smb1.smb.client.laddr address: " + addr ); uhe.printStackTrace( log );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.3K bytes - Viewed (0) -
lib/wasm/wasm_exec.js
const setInt64 = (addr, v) => { this.mem.setUint32(addr + 0, v, true); this.mem.setUint32(addr + 4, Math.floor(v / 4294967296), true); } const setInt32 = (addr, v) => { this.mem.setUint32(addr + 0, v, true); } const getInt64 = (addr) => { const low = this.mem.getUint32(addr + 0, true); const high = this.mem.getInt32(addr + 4, true); return low + high * 4294967296;
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Aug 30 19:15:21 UTC 2024 - 16.5K bytes - Viewed (0) -
src/main/java/jcifs/Config.java
String addr = props.getProperty("jcifs.smb.client.laddr"); if ( addr != null ) { try { return InetAddress.getByName(addr); } catch ( UnknownHostException uhe ) { log.error("Ignoring jcifs.smb.client.laddr address: " + addr, uhe); } } return null; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
* @return a four byte array */ public byte[] getAddress() { byte[] addr = new byte[4]; addr[0] = (byte)(( address >>> 24 ) & 0xFF ); addr[1] = (byte)(( address >>> 16 ) & 0xFF ); addr[2] = (byte)(( address >>> 8 ) & 0xFF ); addr[3] = (byte)( address & 0xFF ); return addr; } /** * To convert this address to an <code>InetAddress</code>. *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 30.1K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.netbiosScope = p.getProperty("jcifs.netbios.scope"); this.netbiosLocalPort = Config.getInt(p, "jcifs.netbios.lport", 0); this.netbiosLocalAddress = Config.getInetAddress(p, "jcifs.netbios.laddr", null); this.lmhostsFilename = p.getProperty("jcifs.netbios.lmhosts"); this.winsServer = Config.getInetAddressArray(p, "jcifs.netbios.wins", ",", new InetAddress[0]);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
&& ( prt == 0 || prt == this.port || /* port 139 is ok if 445 was requested */ ( prt == 445 && this.port == 139 ) ) && ( laddr == this.localAddr || ( laddr != null && laddr.equals(this.localAddr) ) ) && lprt == this.localPort; } void ssn139 () throws IOException { CIFSContext tc = this.transportContext;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)