コード例 #1
0
ファイル: WRITE4args.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     stateid = new stateid4(xdr);
     offset = new offset4(xdr);
     stable = xdr.xdrDecodeInt();
     data = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #2
0
ファイル: ReadStatus.cs プロジェクト: mushuanli/nekodrive
 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._attributes = new PostOperationAttributes(xdr);
     this._count = xdr.xdrDecodeInt();
     this._eof = xdr.xdrDecodeBoolean();
     this._data = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #3
0
    public void xdrDecode(XdrDecodingStream xdr)
 {
        eir_clientid = new clientid4(xdr);
        eir_sequenceid = new sequenceid4(xdr);
        eir_flags = new uint32_t(xdr);
        eir_state_protect = new state_protect4_r(xdr);
        eir_server_owner = new server_owner4(xdr);
        eir_server_scope = xdr.xdrDecodeDynamicOpaque();
        { int size = xdr.xdrDecodeInt(); eir_server_impl_id = new nfs_impl_id4[size]; for ( int idx = 0; idx < size; ++idx ) { eir_server_impl_id[idx] = new nfs_impl_id4(xdr); } }
    }
コード例 #4
0
ファイル: WriteArguments.cs プロジェクト: mushuanli/nekodrive
 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._file = new NFSHandle();
     this._file.Version = V3.RPC.NFSv3Protocol.NFS_V3;
     this._file.xdrDecode(xdr);
     this._offset = xdr.xdrDecodeLong();
     this._count = xdr.xdrDecodeInt();
     this._stable = (StableHow)xdr.xdrDecodeInt();
     this._data = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #5
0
ファイル: WriteArguments.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._file = new NFSHandle();
     this._file.Version = V2.RPC.NFSv2Protocol.NFS_VERSION;
     this._file.xdrDecode(xdr);
     this._beginoffset = xdr.xdrDecodeInt();
     this._offset = xdr.xdrDecodeInt();
     this._totalcount = xdr.xdrDecodeInt();
     this._data = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #6
0
ファイル: NFSHandle.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     switch (this._version)
     {
         case 2:
             this._value = xdr.xdrDecodeOpaque(V2.RPC.NFSv2Protocol.FHSIZE); 
             break;
         case 3:
             this._value = xdr.xdrDecodeDynamicOpaque(); 
             break;
     }
 }
コード例 #7
0
 public void xdrDecode(XdrDecodingStream xdr) {
     lrf_length = new length4(xdr);
     lrf_stateid = new stateid4(xdr);
     lrf_body = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #8
0
ファイル: utf8string.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     value = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #9
0
ファイル: layout_content4.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr) {
     loc_body = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #10
0
 public void xdrDecode(XdrDecodingStream xdr) {
     fls_info = xdr.xdrDecodeDynamicOpaque();
     fls_server = new utf8str_cis(xdr);
 }
コード例 #11
0
ファイル: READ4resok.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     eof = xdr.xdrDecodeBoolean();
     data = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #12
0
 public void xdrDecode(XdrDecodingStream xdr)
 {
     smpt_orig_plain = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #13
0
ファイル: client_owner4.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     co_verifier = new verifier4(xdr);
     co_ownerid = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #14
0
 public void xdrDecode(XdrDecodingStream xdr)
 {
     ssct_iv = xdr.xdrDecodeDynamicOpaque();
     ssct_encr_data = xdr.xdrDecodeDynamicOpaque();
     ssct_hmac = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #15
0
ファイル: threshold_item4.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     thi_hintset = new bitmap4(xdr);
     thi_hintlist = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #16
0
ファイル: state_owner4.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     clientid = new clientid4(xdr);
     owner = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #17
0
ファイル: SET_SSV4args.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr) {
     ssa_digest = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #18
0
ファイル: server_owner4.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     so_minor_id = new uint64_t(xdr);
     so_major_id = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #19
0
ファイル: ssv_mic_tkn4.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     smt_hmac = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #20
0
ファイル: ReadStatus.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._attributes = new FileAttributes(xdr);
     this._data = xdr.xdrDecodeDynamicOpaque();
 }
コード例 #21
0
 public void xdrDecode(XdrDecodingStream xdr)
 {
     sspt_ssv_seq = xdr.xdrDecodeInt();
     sspt_orig_plain = xdr.xdrDecodeDynamicOpaque();
     sspt_pad = xdr.xdrDecodeDynamicOpaque();
 }