Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KSession (0.18 sec)

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

         * 
         * @param config
         * @param calledName
         * @param callingName
         */
        public SessionRequestPacket ( Configuration config, NetbiosName calledName, NetbiosName callingName ) {
            this.type = SESSION_REQUEST;
            this.calledName = new Name(config, calledName);
            this.callingName = new Name(config, callingName);
        }
    
    
        @Override
        int writeTrailerWireFormat ( byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/SessionRequestPacket.java

        SessionRequestPacket() {
            calledName = new Name();
            callingName = new Name();
        }
        public SessionRequestPacket( Name calledName, Name callingName ) {
            type = SESSION_REQUEST;
            this.calledName = calledName;
            this.callingName = callingName;
        }
        int writeTrailerWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 2.1K bytes
    - Viewed (0)
Back to top