Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rcomma (0.03 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

         */
        protected Integer doGetBatchLimit(final String cmd) {
            return null;
        }
    
        /**
         * Initializes the resolver order for name resolution.
         *
         * @param ro comma-separated list of resolver types (LMHOSTS, WINS, BCAST, DNS)
         */
        protected void initResolverOrder(final String ro) {
            this.resolverOrder = new ArrayList<>();
            if (ro == null || ro.length() == 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Configuration.java

         *
         * @return broadcast address to use
         */
        InetAddress getBroadcastAddress();
    
        /**
         *
         *
         * Property {@code jcifs.netbios.wins} (string, comma separated)
         *
         * @return WINS server to use
         */
        InetAddress[] getWinsServers();
    
        /**
         *
         * Property {@code jcifs.netbios.lport} (int)
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

         */
        public int getTreeType() {
            final String connectedService = getService();
            if ("LPT1:".equals(connectedService)) {
                return SmbConstants.TYPE_PRINTER;
            }
            if ("COMM".equals(connectedService)) {
                return SmbConstants.TYPE_COMM;
            }
            return SmbConstants.TYPE_SHARE;
        }
    
        /**
         * @return the service
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
Back to top