Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bond (0.14 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

                buf.dec_ndr_short();        /* cancel count */
            }
            if (ptype == 3 || ptype == 13) {               /* Fault */
                result = buf.dec_ndr_long();
            } else {                        /* Bind_ack or Response */
                decode_out(buf);
            }
        }
    
        public abstract int getOpnum();
        public abstract void encode_in(NdrBuffer buf) throws NdrException;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcMessage.java

                buf.dec_ndr_short(); /* cancel count */
            }
            if ( this.ptype == 3 || this.ptype == 13 ) { /* Fault */
                this.result = buf.dec_ndr_long();
            }
            else { /* Bind_ack or Response */
                decode_out(buf);
            }
        }
    
    
        /**
         * 
         * @return the operation number
         */
        public abstract int getOpnum ();
    
    
        /**
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5K bytes
    - Viewed (0)
Back to top