- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for nativeLanMan (0.19 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
super(config, andx); } /** * @return the nativeLanMan */ public final String getNativeLanMan () { return this.nativeLanMan; } /** * @return the nativeOs */ public final String getNativeOs () { return this.nativeOs; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java
} nativeOs = readString( buffer, bufferIndex ); bufferIndex += stringWireLength( nativeOs, bufferIndex ); nativeLanMan = readString( buffer, bufferIndex, start + byteCount, 255, useUnicode ); bufferIndex += stringWireLength( nativeLanMan, bufferIndex ); if (!extendedSecurity) { primaryDomain = readString(buffer, bufferIndex, start + byteCount, 255, useUnicode);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.nativeOs = p.getProperty("jcifs.smb.client.nativeOs", System.getProperty("os.name")); this.nativeLanMan = p.getProperty("jcifs.smb.client.nativeLanMan", "jCIFS"); this.vcNumber = 1; this.dfsDisabled = Config.getBoolean(p, "jcifs.smb.client.dfs.disabled", false);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected int smbRecvBufferSize = SmbConstants.DEFAULT_RCV_BUF_SIZE; protected int smbNotifyBufferSize = SmbConstants.DEFAULT_NOTIFY_BUF_SIZE; protected String nativeOs; protected String nativeLanMan = "jCIFS"; protected int vcNumber = 1; protected boolean dfsDisabled = false; protected long dfsTTL = 300; protected boolean dfsStrictView = false; protected boolean dfsConvertToFqdn;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
Config.getProperty( "jcifs.smb1.smb.client.nativeOs", System.getProperty( "os.name" )); static final String NATIVE_LANMAN = Config.getProperty( "jcifs.smb1.smb.client.nativeLanMan", "jCIFS" ); static final int VC_NUMBER = 1; static final SmbTransport NULL_TRANSPORT = new SmbTransport( null, 0, null, 0 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return OS string to report */ String getNativeOs (); /** * * Property <tt>jcifs.smb.client.nativeLanMan</tt> (string, default <tt>jCIFS</tt>) * * @return Lanman string to report */ String getNativeLanman (); /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)