- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getMaxXmit (0.11 sec)
-
src/main/java/jcifs/dcerpc/DcerpcBind.java
* Construct bind message * */ public DcerpcBind () {} DcerpcBind ( DcerpcBinding binding, DcerpcHandle handle ) { this.binding = binding; this.max_xmit = handle.getMaxXmit(); this.max_recv = handle.getMaxRecv(); this.ptype = 11; this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; } @Override public int getOpnum () { return 0;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
} /** * @return the max_recv */ int getMaxRecv () { return this.max_recv; } /** * @return the max_xmit */ int getMaxXmit () { return this.max_xmit; } /** * Get a handle to a service * * @param url * @param tc * context to use
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jun 30 10:11:57 UTC 2019 - 12.9K bytes - Viewed (0)