Age | Commit message (Collapse) | Author | Files | Lines |
|
readable. (Output C and header files have not changed, just internal pidl
changes)
(This used to be commit b86b299197f2c3b314d0fc33c0139bd19ef637f2)
|
|
(This used to be commit 1909a0695295e984b948b7410addac0022904ab8)
|
|
(This used to be commit a251712670e1daac949221407ae979b363dbc105)
|
|
was disabled in the first place.
(This used to be commit e52256aec27e2aba8893cd2e570874482696b230)
|
|
(This used to be commit e912f36dc827d7ad38994b93967fe48aade27b2b)
|
|
(This used to be commit a5bf662b52e270d45bba2605f844625cc30c7f89)
|
|
(This used to be commit cf1208471247e2d734f90008d29827541f177952)
|
|
this out.
(This used to be commit 0a78a1f90887afc695204f67af38138271aab2b8)
|
|
(This used to be commit 40547ed33fea57ee8f68a8f864f8f10c9a6d24dc)
|
|
(This used to be commit f5224d40c01b495f2607199f0d85a8c9afb056b0)
|
|
keyword,
move pointer parsing to seperate function.
(This used to be commit ea872b9a2b9a51ba9f6c2842303d067e9e85d11a)
|
|
- added a new IDL type "udlongr", which is like udlong, but with the
two uint32 halves reversed
- modified the winsrepl.idl to cope with a wider range of packets
(This used to be commit bc8d60c918f2e268d591aac464fc6a78c38a4cf9)
|
|
(just like header.pm already did).
(This used to be commit 90b262398b471acf560a8d05765cab1f25e24b5a)
|
|
(This used to be commit e8c1a30f2373bdccb26659867b4f025d28de4724)
|
|
(This used to be commit afadd172981c8753b7e974154a843c36ef73df3a)
|
|
Get rid of register_enum/register_bitmap, etc. (use list of
types in ndr.pm instead)
(This used to be commit efc2e41b8df3a0171cca57291929fb63760c1662)
|
|
- ndr_%_relative% -> ndr_%_relative_ptr%
- Change pointer_default() default to "unique"
(DCE uses "ptr" as default, MIDL doesn't follow the standard and uses "unique")
(This used to be commit 53b4ecbcc7a8da67cde1377de6f24a3de6d229e3)
|
|
is assumed to be "ptr" if not specified (just like midl).
The validator will warn when "ptr" is used at the moment, because
pidl only supports unique, ref and relative at the moment.
(This used to be commit 31bed62a9a6f7830f523d509b67970648d40aaef)
|
|
(This used to be commit c9d7b88756039a3eb3024c886851e489c46ef67f)
|
|
(This used to be commit d8a0a6972156c3211001b7f98e990c167be2468c)
|
|
(This used to be commit 10f3bdce80ff67e05b14c3481a05362b054d1f11)
|
|
(This used to be commit 95c4f3149925ee71e74ea36fae3a65d2eebf717c)
|
|
- use same names in hashes (DATA -> ELEMENTS, etc)
- [case()] and [default] are no longer special case, they're just regular properties
(This used to be commit 6a0f599f822f5c42d93e78c13765804ab2223968)
|
|
parser.pm (now renamed to ndr.pm).
(This used to be commit a469a5fefb4e6941264c11f4bde60eab71f6f7aa)
|
|
less likely that anyone will use pstring for new code
- got rid of winbind_client.h from includes.h. This one triggered a
huge change, as winbind_client.h was including system/filesys.h and
defining the old uint32 and uint16 types, as well as its own
pstring and fstring.
(This used to be commit 9db6c79e902ec538108d6b7d3324039aabe1704f)
|
|
(This used to be commit 5c2f0df566804cf0b8879504f5e41a8100a7fd40)
|
|
various data types:
Add ndr_flags argument to all ndr push/pull scalar functions
(This used to be commit ab490c0c882bb13de190546c50a0631ecb8255ad)
|
|
(This used to be commit 949f31ad2865699da0f3a9e827606abd762b10b7)
|
|
(This used to be commit e65741159d8578d629ccfcd863f034fda895f9fe)
|
|
for the swig wrappers.
(This used to be commit edb32b9b5175f720bce110bf2bb4cf136ed47142)
|
|
the header, and defined on the wire as a 4 byte network byte order
IP. This means the calling code doesn't have to worry about network
byte order conversions.
(This used to be commit 72048e37179dd5b9ada0c5280d2f0d8c23d1a17d)
|
|
metze
(This used to be commit 4cebc7a85810395a0b095127925bd88c7caddb63)
|
|
(This used to be commit a1c98101e4ebdcc4a9504d401a9d34c88c797e6e)
|
|
structure mapping features instead of doing it all ourselves.
This basically works, but has broken all the existing checked in Python
code.
Sample:
pipe = dcerpc.pipe_connect(binding,
dcerpc.DCERPC_SAMR_UUID, int(dcerpc.DCERPC_SAMR_VERSION),
domain, username, password)
r = dcerpc.samr_Connect2()
r.data_in.system_name = 'foo'
r.data_in.access_mask = 0x02000000
result = dcerpc.dcerpc_samr_Connect2(pipe, r)
(This used to be commit c2996ad910a24c977b4c0a1925118d36454514f7)
|
|
this out)
(This used to be commit 7bd4ced313592310475b7403b87c7606afb1b7c1)
|
|
metze
(This used to be commit 030bfd8d7feb16fd6d5117d17913b77b1468a507)
|
|
(This used to be commit dd67a5d833d7e44ff0ec1ba9f5c55c2b1e121b9a)
|
|
(This used to be commit 1d1a9c11ee681540ef8a1029409bb24fc26f976c)
|
|
files don't need to match the type names in the generated headers
- with this type mapping we no longer need definitions for the
deprecated "int32", "uint8" etc form of types. We can now force
everyone to use the standard types int32_t, uint8_t etc.
- fixed all the code that used the deprecated types
- converted the IDL types "int64" and "uint64" to "dlong" and
"udlong". These are the 4 byte aligned 64 bit integers that
Microsoft internally define as two 32 bit integers in a
structure. After discussions with Ronnie Sahlberg we decided that
calling these "int64" was confusing, as it implied a true 8 byte
aligned type
- fixed all the cases where we incorrectly used things like
"NTTIME_hyper" in our C code. The generated API now uses a NTTIME for
those. The fact that it is hyper-aligned on the wire is not relevant
to the API, and should remain just a IDL property
(This used to be commit f86521677d7ff16bdc4815f9524e5286026f10f3)
|
|
(This used to be commit dc8c7cb85cf87d5976573ea6e9de43c0c9d5f44a)
|
|
(This used to be commit 425b988541fa669e7f2905fe959522f2d2d50da1)
|
|
(This used to be commit c252a286efcb9ca2024c8d234c8a65855522fb25)
|
|
(This used to be commit a38db33713348e8a07d3fc932865b2f649dc962f)
|
|
(This used to be commit 8ca1e3aa3b5007f9da3e951e15e0380ae170a1cf)
|
|
(This used to be commit 493ba2da6bb93d080ff92c50d920df8c858f3010)
|
|
structure names if they started with those strings.
(This used to be commit e983de6ead6ed23b51c2df70e69586b1e7be5a60)
|
|
well but needs to be stuck in a subtree.
(This used to be commit a34212247b5dfb87d87c1ce12aab1835c88a0651)
|
|
Start work on supporting bitmaps.
(This used to be commit 6f418f14267291bf8637e5dcd7e8ceca4e430314)
|
|
(This used to be commit 4640d3371eb57de90d972719e8550fea65831f74)
|
|
(This used to be commit edaf81b6395e1af06e9546027f9a9c3c4975c4b4)
|