Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 346 for privasi (0.07 sec)

  1. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java

    import jcifs.internal.smb1.trans.SmbComTransactionResponse;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * 
     */
    public abstract class SmbComNtTransactionResponse extends SmbComTransactionResponse {
    
        private static final Logger log = LoggerFactory.getLogger(SmbComNtTransactionResponse.class);
    
    
        /**
         * 
         * @param config
         */
        protected SmbComNtTransactionResponse ( Configuration config ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponse.java

        /**
         * 
         */
        public static final int TYPE_ROOT_TARGETS = 0x0;
        /**
         * 
         */
        public static final int TYPE_NON_ROOT_TARGETS = 0x1;
    
        private final DfsReferralResponseBuffer dfsResponse = new DfsReferralResponseBuffer();
    
    
        /**
         * 
         * @param config
         */
        public Trans2GetDfsReferralResponse ( Configuration config ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/Smb2Constants.java

     */
    package jcifs.internal.smb2;
    
    
    /**
     * @author mbechler
     *
     */
    public final class Smb2Constants {
    
        /**
         * 
         */
        private Smb2Constants () {}
    
        /**
         * 
         */
        public static final int SMB2_HEADER_LENGTH = 64;
    
        /**
         * 
         */
        public static final int SMB2_NEGOTIATE_SIGNING_ENABLED = 0x0001;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformation.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    import jcifs.smb1.util.Hexdump;
    
    class Trans2QueryFSInformation extends SmbComTransaction {
    
        private int informationLevel;
    
        Trans2QueryFSInformation( int informationLevel ) {
            command = SMB_COM_TRANSACTION2;
            subCommand = TRANS2_QUERY_FS_INFORMATION;
            this.informationLevel = informationLevel;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java

        /**
         * AES 128 CCM
         */
        public static final int CIPHER_AES128_CCM = 0x1;
    
        /**
         * AES 128 GCM
         */
        public static final int CIPHER_AES128_GCM = 0x2;
    
        private int[] ciphers;
    
    
        /**
         * 
         * @param config
         * @param ciphers
         */
        public EncryptionNegotiateContext ( Configuration config, int ciphers[] ) {
            this.ciphers = ciphers;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/net/NetShareEnum.java

    import jcifs.Configuration;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * 
     * 
     */
    public class NetShareEnum extends SmbComTransaction {
    
        private static final String DESCR = "WrLeh\u0000B13BWz\u0000";
    
    
        /**
         * 
         * @param config
         */
        public NetShareEnum ( Configuration config ) {
            super(config, SMB_COM_TRANSACTION, NET_SHARE_ENUM);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java

    import jcifs.internal.NotifyResponse;
    import jcifs.internal.SMBProtocolDecodingException;
    
    
    /**
     * 
     */
    public class NtTransNotifyChangeResponse extends SmbComNtTransactionResponse implements NotifyResponse {
    
        private List<FileNotifyInformation> notifyInformation = new ArrayList<>();
    
    
        /**
         * 
         * @param config
         */
        public NtTransNotifyChangeResponse ( Configuration config ) {
            super(config);
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponse.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.smb.NtStatus;
    
    
    /**
     * @author mbechler
     *
     */
    public class Smb2ChangeNotifyResponse extends ServerMessageBlock2Response implements NotifyResponse {
    
        private List<FileNotifyInformation> notifyInformation = new ArrayList<>();
    
    
        /**
         * @param config
         */
        public Smb2ChangeNotifyResponse ( Configuration config ) {
            super(config);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 07:13:17 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/RandomAccessFileTest.java

    import jcifs.smb.SmbRandomAccessFile;
    
    
    /**
     * @author mbechler
     *
     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( "javadoc" )
    public class RandomAccessFileTest extends BaseCIFSTest {
    
        private static final Logger log = LoggerFactory.getLogger(RandomAccessFileTest.class);
    
    
        /**
         * @param name
         * @param properties
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NbtException.java

     */
    
    package jcifs.netbios;
    
    
    import jcifs.CIFSException;
    
    
    @SuppressWarnings ( "javadoc" )
    public class NbtException extends CIFSException {
    
        /**
         * 
         */
        private static final long serialVersionUID = 492638554095148960L;
        // error classes
        public static final int SUCCESS = 0;
        public static final int ERR_NAM_SRVC = 0x01;
        public static final int ERR_SSN_SRVC = 0x02;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
Back to top