Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for broadcast (0.25 sec)

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

            request.addr = addr != null ? addr : NbtAddress.getWINSAddress();
            request.isBroadcast = request.addr == null;
    
            if( request.isBroadcast ) {
                request.addr = baddr;
                n = RETRY_COUNT;
            } else {
                request.isBroadcast = false;
                n = 1;
            }
    
            do {
                try {
    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)
  2. src/main/java/jcifs/NameServiceClient.java

         * signifies no scope.
         * 
         * The additional <code>svr</code> parameter specifies the address to
         * query. This might be the address of a specific host, a name server,
         * or a broadcast address.
         *
         * @param host
         *            the name to resolve
         * @param type
         *            the hex code of the name
         * @param scope
         *            the scope of the name
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.9K bytes
    - Viewed (0)
Back to top