Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for catch (0.03 sec)

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

    synchronized (this) {
            try {
                state = 1;
                DcerpcMessage bind = new DcerpcBind(binding, this);
                sendrecv(bind);
            } catch (IOException ioe) {
                state = 0;
                throw ioe;
            }
    }
        }
        public void sendrecv(DcerpcMessage msg) throws DcerpcException, IOException {
            byte[] stub, frag;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcHandle.java

            synchronized ( this ) {
                try {
                    this.state = 1;
                    DcerpcMessage bind = new DcerpcBind(this.binding, this);
                    sendrecv(bind);
                }
                catch ( IOException ioe ) {
                    this.state = 0;
                    throw ioe;
                }
            }
        }
    
    
        /**
         * 
         * @param msg
         * @throws DcerpcException
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
Back to top