- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 14 for decode_out (0.26 seconds)
-
src/main/java/jcifs/dcerpc/msrpc/samr.java
} @Override public void encode_in(final NdrBuffer _dst) throws NdrException { this.handle.encode(_dst); } @Override public void decode_out(final NdrBuffer _src) throws NdrException { this.retval = _src.dec_ndr_long(); } } /** * SAMR Connect2 operation for establishing a connection to the SAM database.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 23.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
} @Override public void encode_in(final NdrBuffer _dst) throws NdrException { handle.encode(_dst); } @Override public void decode_out(final NdrBuffer _src) throws NdrException { retval = _src.dec_ndr_long(); } } /** * SAMR Connect2 operation for establishing a connection to the SAM database.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 23.1K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java
byte[] encodeBuffer = new byte[1024]; NdrBuffer dst = new NdrBuffer(encodeBuffer, 0); enumEx.encode_in(dst); // Simulate decode_out // The decode_out method expects the info and totalentries to be already initialized // and will decode into them. netdfs.DfsEnumStruct decodedInfo = new netdfs.DfsEnumStruct();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 30.9K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
info.encode(_dst); } _dst.enc_ndr_long(prefmaxlen); _dst.enc_ndr_long(resume_handle); } @Override public void decode_out(NdrBuffer _src) throws NdrException { level = _src.dec_ndr_long(); _src.dec_ndr_long(); /* union discriminant */ final int _infop = _src.dec_ndr_long(); if (_infop != 0) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 26.3K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
}, "Should fail on UUID encoding"); } } @Nested @DisplayName("Decoding Tests") class DecodingTests { @Test @DisplayName("decode_out should read bind response data correctly") void testDecodeOut() throws Exception { // Given int result = 0; when(mockBuffer.dec_ndr_short()).thenReturn(4096, 4096, 10, result, 0);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 22.7K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.java
this.info.encode(_dst); } _dst.enc_ndr_long(this.prefmaxlen); _dst.enc_ndr_long(this.resume_handle); } @Override public void decode_out(NdrBuffer _src) throws NdrException { this.level = _src.dec_ndr_long(); _src.dec_ndr_long(); /* union discriminant */ final int _infop = _src.dec_ndr_long();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 27K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
} @Override public void encode_in(final NdrBuffer _dst) throws NdrException { this.handle.encode(_dst); } @Override public void decode_out(final NdrBuffer _src) throws NdrException { this.handle.decode(_src); this.retval = _src.dec_ndr_long(); } } /** * LSA query information policy message.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 44.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
} @Override public void encode_in(final NdrBuffer _dst) throws NdrException { handle.encode(_dst); } @Override public void decode_out(final NdrBuffer _src) throws NdrException { handle.decode(_src); retval = _src.dec_ndr_long(); } } /** * LSA query information policy message.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 42.5K bytes - Click Count (0) -
docs/smb3-features/06-witness-protocol-design.md
buffer.enc_ndr_string(request.getServerAddress()); buffer.enc_ndr_long(request.getFlags()); } @Override public void decode_out(NdrBuffer buffer) throws NdrException { // Decode WitnessRegister response response = new WitnessRegisterResponse(); response.setRegistrationId(buffer.dec_ndr_string());
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 42K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
@Override public void encode_in(NdrBuffer buf) throws NdrException { // Simulate encoding some data buf.enc_ndr_long(12345); } @Override public void decode_out(NdrBuffer buf) throws NdrException { // Simulate decoding some data buf.dec_ndr_long(); } } @BeforeEach void setUp() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 18.3K bytes - Click Count (0)