Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SmbComSeek (2.24 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComSeek.java

     * It allows seeking to different positions within an open file.
     *
     * @author mbechler
     */
    public class SmbComSeek extends ServerMessageBlock {
    
        /**
         * Constructs a seek command.
         *
         * @param config the configuration
         * @param fid the file identifier
         */
        public SmbComSeek(final Configuration config, final int fid) {
            super(config, SMB_COM_SEEK);
            this.fid = fid;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                    // We do only really care if we open for writing and not shared for writing
                    // otherwise there are no guarantees anyway, but this stuff is legacy anyways.
                    final SmbComSeek seekReq = new SmbComSeek(config, 0);
                    seekReq.setMode(0x2); // from EOF
                    final SmbComSeekResponse seekResp = new SmbComSeekResponse(config);
                    seekReq.setFid(response.getFid());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top