- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SmbComSeekResponse (0.18 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComSeekResponse.java
import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class SmbComSeekResponse extends ServerMessageBlock { private long offset; /** * @param config */ public SmbComSeekResponse ( Configuration config ) { super(config); } /** * @return the offset */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
super(config); } /** * @param config * @param andxResp */ public SmbComOpenAndXResponse ( Configuration config, SmbComSeekResponse andxResp ) { super(config, andxResp); } /** * @return the fid */ public final int getFid () { return this.fid; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
SmbComSeek seekReq = new SmbComSeek(config, 0); seekReq.setMode(0x2); // from EOF SmbComSeekResponse seekResp = new SmbComSeekResponse(config); seekReq.setFid(response.getFid()); try { h.send(seekReq, seekResp);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)