- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for hexCode (0.24 sec)
-
src/main/java/jcifs/smb1/netbios/Name.java
return false; } n = (Name)obj; if( scope == null && n.scope == null ) { return name.equals( n.name ) && hexCode == n.hexCode; } return name.equals( n.name ) && hexCode == n.hexCode && scope.equals( n.scope ); } public String toString() { StringBuffer sb = new StringBuffer(); String n = name; // fix MSBROWSE name
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusRequest.java
} @Override int writeBodyWireFormat ( byte[] dst, int dstIndex ) { int tmp = this.questionName.hexCode; this.questionName.hexCode = 0x00; // type has to be 0x00 for node status int result = writeQuestionSectionWireFormat(dst, dstIndex); this.questionName.hexCode = tmp; return result; } @Override int readBodyWireFormat ( byte[] src, int srcIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Name.java
return false; } n = (Name) obj; if ( this.scope == null && n.scope == null ) { return this.name.equals(n.name) && this.hexCode == n.hexCode; } return this.name.equals(n.name) && this.hexCode == n.hexCode && this.scope.equals(n.scope); } @Override public String toString () { StringBuffer sb = new StringBuffer();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusResponse.java
*/ if ( !addrFound && this.queryAddress.hostName.hexCode == hexCode && ( this.queryAddress.hostName.isUnknown() || this.queryAddress.hostName.name.equals(n) ) ) { if ( this.queryAddress.hostName.isUnknown() ) { this.queryAddress.hostName = new Name(this.config, n, hexCode, scope); } this.queryAddress.groupName = groupName;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusRequest.java
isBroadcast = false; } int writeBodyWireFormat( byte[] dst, int dstIndex ) { int tmp = questionName.hexCode; questionName.hexCode = 0x00; // type has to be 0x00 for node status int result = writeQuestionSectionWireFormat( dst, dstIndex ); questionName.hexCode = tmp; return result; } int readBodyWireFormat( byte[] src, int srcIndex ) { return 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
* for a description of <code>type</code> * and <code>scope</code>. * * @param host * hostname to lookup all addresses for * @param type * the hexcode of the name * @param scope * the scope of the name * @return resolved addresses * @throws java.net.UnknownHostException * if there is an error resolving the name */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.9K bytes - Viewed (0)