- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 76 for tc (0.01 sec)
-
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
super(domain != null ? domain : tc.getConfig().getDefaultDomain(), username != null ? username : tc.getConfig().getDefaultUsername() != null ? tc.getConfig().getDefaultUsername() : "GUEST", password != null ? password : tc.getConfig().getDefaultPassword() != null ? tc.getConfig().getDefaultPassword() : "",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
* environment. * * @param tc * context to use */ public Type3Message(final CIFSContext tc) { setFlags(getDefaultFlags(tc)); setDomain(tc.getConfig().getDefaultDomain()); setUser(tc.getConfig().getDefaultUsername()); setWorkstation(tc.getNameServiceClient().getLocalHost().getHostName()); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
* * @param tc * the CIFS context for this handle */ public DcerpcHandle(final CIFSContext tc) { this.transportContext = tc; this.binding = null; } /** * Constructs a DcerpcHandle with the specified CIFS context and binding * * @param tc * the CIFS context for this handle
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
* environment. * * @param tc * context to use */ public Type2Message(final CIFSContext tc) { this(tc, getDefaultFlags(tc), null, null); } /** * Creates a Type-2 message in response to the given Type-1 message * using default values from the current environment. * * @param tc * context to use * @param type1
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Lmhosts.java
* * @param host the hostname to resolve * @param tc the CIFS context * @return resolved name, null if not found */ public synchronized NbtAddress getByName(final String host, final CIFSContext tc) { return getByName(new Name(tc.getConfig(), host, 0x20, null), tc); } synchronized NbtAddress getByName(final Name name, final CIFSContext tc) { NbtAddress result = null; try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
* environment. * * @param tc * context to use */ public Type1Message(final CIFSContext tc) { this(tc, getDefaultFlags(tc), tc.getConfig().getDefaultDomain(), tc.getNameServiceClient().getLocalHost().getHostName()); } /** * Creates a Type-1 message with the specified parameters. * * @param tc * context to use * @param flags
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransportPool.java
/** * Get transport connection * * @param tc * context to use * @param address the server address * @param port the port number * @param exclusive * whether to acquire an unshared connection * @return a transport connection to the target */ SmbTransport getSmbTransport(CIFSContext tc, Address address, int port, boolean exclusive); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
log.debug("Ignoring invalid initial token", e1); } return new SpnegoContext(tc.getConfig(), setupTargetName(tc, host, new NtlmContext(tc, this, doSigning))); } private static SSPContext setupTargetName(CIFSContext tc, String host, NtlmContext ntlmContext) { if (host != null && tc.getConfig().isSendNTLMTargetName()) { ntlmContext.setTargetName(String.format("cifs/%s", host)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
public boolean isGroupAddress(final CIFSContext tc) throws UnknownHostException { checkData(tc); return this.groupName; } @Override public int getNodeType(final CIFSContext tc) throws UnknownHostException { checkData(tc); return this.nodeType; } @Override public boolean isBeingDeleted(final CIFSContext tc) throws UnknownHostException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
* * @param tc the CIFS context containing configuration */ public NameServiceClientImpl(final CIFSContext tc) { this(tc.getConfig().getNetbiosLocalPort(), tc.getConfig().getNetbiosLocalAddress(), tc); } NameServiceClientImpl(final int lport, final InetAddress laddr, final CIFSContext tc) { this.lport = lport; this.laddr = laddr;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0)