- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SessionRequestPacket (0.12 sec)
-
src/main/java/jcifs/smb1/netbios/SessionRequestPacket.java
package jcifs.smb1.netbios; import java.io.IOException; import java.io.InputStream; public class SessionRequestPacket extends SessionServicePacket { private Name calledName, callingName; SessionRequestPacket() { calledName = new Name(); callingName = new Name(); } public SessionRequestPacket( Name calledName, Name callingName ) { type = SESSION_REQUEST; this.calledName = calledName;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/SessionRequestPacket.java
import java.io.IOException; import java.io.InputStream; import jcifs.Configuration; import jcifs.NetbiosName; /** * */ public class SessionRequestPacket extends SessionServicePacket { private Name calledName, callingName; SessionRequestPacket ( Configuration config ) { this.calledName = new Name(config); this.callingName = new Name(config); } /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
int type; InputStream in; try { in = super.getInputStream(); OutputStream out = super.getOutputStream(); SessionServicePacket ssp0 = new SessionRequestPacket( calledName, NbtAddress.localhost.hostName ); out.write( buffer, 0, ssp0.writeWireFormat( buffer, 0 )); setSoTimeout( soTimeout ); type = ssp0.readPacketType( in, buffer, 0 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.8K bytes - Viewed (0)