- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for DcerpcBinding (0.14 sec)
-
src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java
*/ package jcifs.smb1.dcerpc; import java.util.HashMap; import java.util.Iterator; import jcifs.smb1.dcerpc.msrpc.*; public class DcerpcBinding { private static HashMap INTERFACES; static { INTERFACES = new HashMap(); INTERFACES.put("srvsvc", srvsvc.getSyntax()); INTERFACES.put("lsarpc", lsarpc.getSyntax());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcBinding.java
import java.util.Map.Entry; import jcifs.dcerpc.msrpc.lsarpc; import jcifs.dcerpc.msrpc.netdfs; import jcifs.dcerpc.msrpc.samr; import jcifs.dcerpc.msrpc.srvsvc; /** * */ public class DcerpcBinding { private static final Map<String, String> INTERFACES = new HashMap<>(); static { INTERFACES.put("srvsvc", srvsvc.getSyntax()); INTERFACES.put("lsarpc", lsarpc.getSyntax());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
* * If the server is absent it is set to "127.0.0.1" */ protected static DcerpcBinding parseBinding ( String str ) throws DcerpcException { int state, mark, si; char[] arr = str.toCharArray(); String proto = null, key = null; DcerpcBinding binding = null; state = mark = si = 0; do { char ch = arr[ si ];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jun 30 10:11:57 UTC 2019 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
* * If the server is absent it is set to "127.0.0.1" */ protected static DcerpcBinding parseBinding(String str) throws DcerpcException { int state, mark, si; char[] arr = str.toCharArray(); String proto = null, key = null; DcerpcBinding binding = null; state = mark = si = 0; do { char ch = arr[si];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcBind.java
if (result != 0) return new DcerpcException(getResultMessage(result)); return null; } DcerpcBinding binding; int max_xmit, max_recv; public DcerpcBind() { } DcerpcBind(DcerpcBinding binding, DcerpcHandle handle) { this.binding = binding; max_xmit = handle.max_xmit; max_recv = handle.max_recv; ptype = 11;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcBind.java
return new DcerpcException(getResultMessage(this.result)); return null; } private DcerpcBinding binding; private int max_xmit, max_recv; /** * Construct bind message * */ public DcerpcBind () {} DcerpcBind ( DcerpcBinding binding, DcerpcHandle handle ) { this.binding = binding; this.max_xmit = handle.getMaxXmit();
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/DcerpcPipeHandle.java
this.pipe = new SmbNamedPipe(makePipeUrl(), pipeFlags, unshared, tc); this.handle = this.pipe.openPipe().unwrap(SmbPipeHandleInternal.class); } private String makePipeUrl () { DcerpcBinding binding = getBinding(); String url = "smb://" + binding.getServer() + "/IPC$/" + binding.getEndpoint().substring(6); String params = ""; String server = (String) binding.getOption("server");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jan 26 11:51:07 UTC 2020 - 5.2K bytes - Viewed (0)