Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NameQueryResponse (0.18 sec)

  1. src/main/java/jcifs/smb1/netbios/NameQueryResponse.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.netbios;
    
    class NameQueryResponse extends NameServicePacket {
    
        NameQueryResponse() {
            recordName = new Name();
        }
    
        int writeBodyWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int readBodyWireFormat( byte[] src, int srcIndex ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameQueryResponse.java

     */
    
    package jcifs.netbios;
    
    
    import java.util.Arrays;
    
    import jcifs.Configuration;
    
    
    class NameQueryResponse extends NameServicePacket {
    
        NameQueryResponse ( Configuration config ) {
            super(config);
            this.recordName = new Name(config);
        }
    
    
        @Override
        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                                                throws UnknownHostException {
            int n;
            NameQueryRequest request = new NameQueryRequest( name );
            NameQueryResponse response = new NameQueryResponse();
    
            request.addr = addr != null ? addr : NbtAddress.getWINSAddress();
            request.isBroadcast = request.addr == null;
    
            if( request.isBroadcast ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            int n;
            Configuration config = this.transportContext.getConfig();
            NameQueryRequest request = new NameQueryRequest(config, name);
            NameQueryResponse response = new NameQueryResponse(config);
    
            request.addr = addr != null ? addr : getWINSAddress();
            request.isBroadcast = request.addr == null || isBroadcastAddress(request.addr);
    
            if ( request.isBroadcast ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top