- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getNetbiosRcvBufSize (0.24 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getNetbiosRetryCount(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosRcvBufSize() */ @Override public int getNetbiosRcvBufSize () { return this.delegate.getNetbiosRcvBufSize(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosCachePolicy() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
this.snd_buf = new byte[tc.getConfig().getNetbiosSndBufSize()]; this.rcv_buf = new byte[tc.getConfig().getNetbiosRcvBufSize()]; this.out = new DatagramPacket(this.snd_buf, tc.getConfig().getNetbiosSndBufSize(), this.baddr, NAME_SERVICE_UDP_PORT); this.in = new DatagramPacket(this.rcv_buf, tc.getConfig().getNetbiosRcvBufSize()); this.resolveOrder = tc.getConfig().getResolveOrder(); initCache(tc); }
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/config/BaseConfiguration.java
return this.netbiosScope; } @Override public int getNetbiosCachePolicy () { return this.netbiosCachePolicy; } @Override public int getNetbiosRcvBufSize () { return this.netbiosRevcBufferSize; } @Override public int getNetbiosRetryCount () { return this.netbiosRetryCount; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
int getNetbiosSndBufSize (); /** * * Property <tt>jcifs.netbios.rcv_buf_size</tt> (int, default 576) * * @return netbios recieve buffer size */ int getNetbiosRcvBufSize (); /** * * Property <tt>jcifs.netbios.retryTimeout</tt> (int, default 3000) * * @return timeout of retry requests, in milliseconds */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)