summaryrefslogtreecommitdiff
path: root/pidl/lib/Parse/Pidl/Samba4/NDR
AgeCommit message (Collapse)AuthorFilesLines
2010-09-28pidl:NDR/Parser: remove unused code for array element indexStefan Metzmacher1-6/+0
metze
2010-09-28pidl:NDR/Parser: simplify logic in ParseMemCtxPullFlags()Stefan Metzmacher1-6/+4
metze
2010-09-28pidl:NDR/Client: make the generated code look a bit nicerStefan Metzmacher1-1/+1
metze
2010-09-28pidl: remove unused async property handlingStefan Metzmacher1-2/+1
metze
2010-09-28pidl:NDR/Client.pm: remove unreached codeStefan Metzmacher1-3/+0
metze
2010-09-23pidl:NDR/Parser: fix range() for arraysStefan Metzmacher1-1/+32
metze
2010-09-16pidl: prevent ndr_print_*() dying on NULL pointersAndrew Tridgell1-0/+2
when using ndrdump you can get uninitialised structures containing pointers. Don't segfault when trying to print them
2010-08-28pidl:Samba4/NDR/Client: support argument based stubs for [in,out,string]Stefan Metzmacher1-2/+17
metze
2010-08-28pidl:Samba4/NDR/Client: correctly copy [out,charset()] buffersStefan Metzmacher1-20/+62
If the conversion from CH_UTF16 to CH_UNIX uses multi-byte characters in CH_UNIX, we should not silently truncate the string, but return an error. metze
2010-08-28pidl:Samba4/NDR/Client: fix skip reason for unsized arraysStefan Metzmacher1-1/+1
metze
2010-08-16Fix a typoVolker Lendecke1-1/+1
2010-08-16pidl:Samba4/NDR/Client.pm: correctly copy fixed size out arraysStefan Metzmacher1-13/+13
metze
2010-08-12pidl:Samba4/NDR/Client: add sync dcerpc_pipe based stubs as compat for ↵Stefan Metzmacher1-0/+60
OpenChange This will activate the compat wrappers for all functions of an interface: #define DCERPC_IFACE_MYPROTO_COMPAT 1 #include <ndr_myproto_c.h> This will activates the compat wrappers just for specific functions: #define DCERPC_CALL_MYFN1_COMPAT 1 #define DCERPC_CALL_MYFN2_COMPAT 1 #include <ndr_myproto_c.h> metze
2010-08-12pidl:Samba4/NDR/Client: add non struct base dcerpc_binding_handle client stubsStefan Metzmacher1-2/+460
metze
2010-08-12pidl:Samba4/NDR/Client: convert code to $self->pidl()Stefan Metzmacher1-162/+190
metze
2010-08-12pidl:Samba4/NDR/Client: s/interface/if/Stefan Metzmacher1-22/+22
metze
2010-08-12pidl:Samba4/NDR/Client: make use of the new dcerpc_binding_handle_call() ↵Stefan Metzmacher1-94/+15
infrastructure metze
2010-08-12pidl:Samba4/NDR/Client: remove old dcerpc_pipe based sync stubsStefan Metzmacher1-42/+0
They're unused in Samba and only used by OpenChange. I'll add a compat functions for OpenChange later. metze
2010-05-18Finish removal of iconv_convenience in public API's.Jelmer Vernooij1-4/+4
2010-05-12Choose between local tevent_status.h header file and installed oneJulien Kerihuel1-1/+1
Signed-off-by: Stefan Metzmacher <metze@samba.org>
2010-04-15pidl:Samba4/NDR/Client: map NT_STATUS_NET_WRITE_FAULT to the matching ↵Stefan Metzmacher1-0/+8
NT_STATUS_RPC_* code metze
2010-03-29pidl:Samba4/Client: don't mix rpc and application NTSTATUS errors anymore ↵Stefan Metzmacher1-1/+16
for the new bindings The new dcerpc_binding_handle based client stubs don't mix error codes anymore, while the old dcerpc_pipe based ones still do to keep OpenChange happy for now. metze
2010-03-12pidl:Samba4/NDR/Client: make the old rpc_request style async functions staticStefan Metzmacher1-18/+14
metze
2010-03-12pidl:Samba4/NDR/Client: generate stubs for dcerpc_binding_handle abstractionStefan Metzmacher1-0/+183
metze
2010-03-12pidl:Samba4/NDR/Client: don't generate client stubs for function marked as ↵Stefan Metzmacher1-5/+5
[todo] metze
2010-03-01pidl:NDR/Client.pm: generate explicit _recv functionsStefan Metzmacher1-0/+32
metze
2010-02-20s4:rpc_server Add a 'if_version' parameter to the bind operation.Andrew Bartlett1-1/+1
This allows the interface version to be forwarded to the remote server in the RPC proxy, both in the endpoint lookup and the subsequent bind. Andrew Bartlett
2010-02-18pidl: use ndr_push_relative_ptr2_start and ndr_push_relative_ptr2_end.Günther Deschner1-1/+5
Guenther
2009-12-12pidl: Introduce new dirrective: relative_shortMatthieu Patou1-3/+14
relative_short is like relative but instead of having the offset coded on 4 bytes it's coded on 2 bytes. Such things happen in GET_DFS_REFERAL messages. Signed-off-by: Stefan Metzmacher <metze@samba.org>
2009-11-26pidl:NDR/Parser: $size can be 'foo / 2' so we need to add '(' and ')'Stefan Metzmacher1-1/+1
foo / 5 * sizeof(bar)' isn't the same as '(foo / 2) * sizeof(bar)'. metze
2009-11-20pidl:NDR/Parser.pm: update ndr_pull->relative_highest_offset after handling ↵Stefan Metzmacher1-1/+6
relative pointers metze
2009-10-02ndr64: added support for trailing gap alignmentAndrew Tridgell1-0/+4
NDR64 has a 'trailing gap' alignment, which aligns the end of a structure on the overall structure alignment. This explains the discrepancy we had with the RPC-SAMR test and NDR64
2009-09-29pidl: added union padding for NDR64Andrew Tridgell1-0/+8
This fixes the problem with samr UserInfo16 when NDR64 is enabled
2009-09-17ndr: split out ndr enum functionsAndrew Tridgell1-2/+2
This allows for easier implementation of the NDR32/NDR64 split
2009-09-17s4-pidl: add support for NDR64Andrew Tridgell1-5/+5
Added support for NDR64 to the samba4 pidl generator
2009-08-12when we get an NDR error in the logs, it is useful to know where it happenedAndrew Tridgell1-5/+5
2009-07-27pidl: allow foo being on the wire after [length_is(foo)] uint8 *bufferStefan Metzmacher1-0/+4
metze
2009-07-27pidl: add support for [string] on fixed size arrays.Stefan Metzmacher1-1/+1
midl also supports this: struct { long l1; [string] wchar_t str[16]; long l2; }; Where the wire size of str is encoded like a length_is() header: 4-byte offset == 0; 4-byte array length; The strings are zero terminated. metze
2009-04-20pidl:Samba4/client: fix dcerpc_ndr_request_send() callersStefan Metzmacher1-2/+3
For samba4 you need one of this: samba/source4# make full_idl samba/source4# make clean samba# git clean -x -f metze
2009-04-20pidl:Samba4/client: use dcerpc_ndr_request() for sync requestsStefan Metzmacher1-5/+7
metze
2009-03-04pidl: Don't generate variables declarations for pointless array counters.Tim Prouty1-1/+19
Code isn't generated to iterate over arrays of length 0, but the variable declarations still are. The result is 'unused variable' warnings. This only seems to be happening in one place right now, so I targeted the fix to this case, but refactoring could be done to make all variable declarations do this zero length check. Making it the default would be a much more invasive fix. Jelmer, please check!
2009-03-01Don't generate array iterators when the length of the array is always 0.Jelmer Vernooij1-2/+8
(bug #6140)
2009-02-25Only define _GNU_SOURCE if it's not defined yet.Jelmer Vernooij1-0/+2
2009-02-25Don't define _GNU_SOURCE if it's already defined on the command-line.Jelmer Vernooij1-0/+2
2009-02-19pidl:NDR/Parser: don't call [noopnum] function when creating the ↵Stefan Metzmacher1-3/+3
ndr_interface_table metze
2009-02-09Remove an invalid discard_const_p() - it masks an actualJelmer Vernooij1-1/+1
bug in pidl where pidl uses "const" in a struct where there should not be const. There is only a single place in the Samba codebase where this triggers a warning.
2009-02-09Use discard_const_p rather than CONST_DISCARD.Jelmer Vernooij1-1/+1
2009-01-17pidl: Remove "max" and make "range" smarter about unsigned typesTim Prouty1-7/+9
This eliminates a warning in pidl generated code, while preserving cross-platform idl compatibility.
2009-01-15pidl: Add max property to be used instead of range for unsigned types.Tim Prouty1-0/+6
Compilers complain about ranges starting at 0 for unsigned types, since an unsigned type is never less than 0. The max property implicitly makes 0 the lower bound when used with unsigned types.
2009-01-01Add iconv_convenience argument to size functions.Jelmer Vernooij1-4/+4