- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for NodeStatusRequest (0.15 sec)
-
src/main/java/jcifs/netbios/NodeStatusRequest.java
* 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; this.questionType = NBSTAT; this.isRecurDesired = false;
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/smb1/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.smb1.netbios; class NodeStatusRequest extends NameServicePacket { NodeStatusRequest( Name name ) { questionName = name; questionType = NBSTAT; isRecurDesired = false; isBroadcast = false; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
} NbtAddress[] getNodeStatus( NbtAddress addr ) throws UnknownHostException { int n, srcHashCode; NodeStatusRequest request; NodeStatusResponse response; response = new NodeStatusResponse( addr ); request = new NodeStatusRequest( new Name( NbtAddress.ANY_HOSTS_NAME, 0x00, null)); request.addr = addr.getInetAddress();
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
NodeStatusResponse response = new NodeStatusResponse(this.transportContext.getConfig(), addr.unwrap(NbtAddress.class)); NodeStatusRequest request = new NodeStatusRequest( this.transportContext.getConfig(), new Name(this.transportContext.getConfig(), NbtAddress.ANY_HOSTS_NAME, 0x00, null)); request.addr = addr.toInetAddress();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0)