Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for proto3 (0.17 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcBinding.java

            INTERFACES.put(name, syntax);
        }
    
        private String proto;
        private Map<String, Object> options = null;
        private String server;
        private String endpoint = null;
        private UUID uuid = null;
        private int major;
        private int minor;
    
    
        DcerpcBinding ( String proto, String server ) {
            this.proto = proto;
            this.server = server;
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

        {
            INTERFACES.put(name, syntax);
        }
    
        String proto;
        String server;
        String endpoint = null;
        HashMap options = null;
        UUID uuid = null;
        int major;
        int minor;
    
        DcerpcBinding(String proto, String server) {
            this.proto = proto;
            this.server = server;
        }
    
        void setOption(String key, Object val) throws DcerpcException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.2K bytes
    - Viewed (0)
Back to top