Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SessionRequestPacket (0.07 sec)

  1. src/main/java/jcifs/smb1/netbios/SessionRequestPacket.java

    /**
     * NetBIOS session request packet for establishing sessions.
     * This packet is sent to request a NetBIOS session with a remote host.
     */
    public class SessionRequestPacket extends SessionServicePacket {
    
        private final Name calledName, callingName;
    
        SessionRequestPacket() {
            calledName = new Name();
            callingName = new Name();
        }
    
        /**
         * Constructs a NetBIOS session request packet.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/SessionRequestPacket.java

    /**
     * NetBIOS session request packet implementation.
     * This packet is used to initiate NetBIOS session connections.
     */
    public class SessionRequestPacket extends SessionServicePacket {
    
        private final Name calledName, callingName;
    
        SessionRequestPacket(final Configuration config) {
            this.calledName = new Name(config);
            this.callingName = new Name(config);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NbtSocket.java

            InputStream in;
    
            try {
                in = super.getInputStream();
                final OutputStream out = super.getOutputStream();
    
                final SessionServicePacket ssp0 = new SessionRequestPacket(calledName, NbtAddress.localhost.hostName);
                out.write(buffer, 0, ssp0.writeWireFormat(buffer, 0));
    
                setSoTimeout(soTimeout);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top