Age | Commit message (Collapse) | Author | Files | Lines |
|
(This used to be commit b7b46ddd412bd106655c2a7b96a322d9f6ac3019)
|
|
Guenther
(This used to be commit 8fb5d36734cb19dcbcf5e22c43e80db7646e82fa)
|
|
Guenther
(This used to be commit 08a5c3130773c6e6c2339ece56cd5fba213dcbbd)
|
|
Guenther
(This used to be commit 7a0441948977bd97508ab662a550b8664e87c724)
|
|
(This used to be commit 37425495f392a2d0122a93aa2c42758eab7dab5a)
|
|
(This used to be commit 2a5a0819eea86ba322434306e062d13893b5722e)
|
|
(This used to be commit 3ef8a6834df63a0bfa68996daea6432e98243d40)
|
|
Guenther
(This used to be commit 8e19284fbd425d04954eaed374c72b0230d4ff99)
|
|
dfs_RemoveFtRoot and dfs_FlushFtTable).
Guenther
(This used to be commit 91d4fc25c5448cd8e3d6991b38a9f2190324c6b2)
|
|
Guenther
(This used to be commit 3e0e9506b62322cba65d992fc8d783001595e7e7)
|
|
found in the documentation.
Guenther
(This used to be commit 56d16c10ef35eb160528381c81fd4561e49c3531)
|
|
Guenther
(This used to be commit a8a6d7b649eb8610d7ee6d666e3df91afb50ac01)
|
|
Guenther
(This used to be commit 34cff06e25ce63e2e3e78f9191138d21189a60a8)
|
|
Hm, wondering if there is a better way to let that be composed out of
one dfs_VolumeFlavor flag and one dfs_VolumeState flag.
Guenther
(This used to be commit 152fcddebc459624002c002bd2ee457ff6bca9ba)
|
|
Guenther
(This used to be commit d2805754a242a395d0322fb6b44965f41a81c217)
|
|
Guenther
(This used to be commit f402f9898819a50886213e921f1136db40142ed6)
|
|
Guenther
(This used to be commit 4b767d6eefe66e742980cbad3f5bbbf941556820)
|
|
Guenther
(This used to be commit 5d9941acdbce2cab63dbd09d3fff84ac8edb20c3)
|
|
Guenther
(This used to be commit d4e5d80c1d52b5bb2ebbf18c217032d61095aa00)
|
|
(This used to be commit d1364ef0cd8f1a64f44476476323ab390ac4de48)
|
|
pointing this out.
Guenther
(This used to be commit 246ab597057325611b5e53e6240ee8cabd3b6df7)
|
|
Guenther
(This used to be commit c5b49d111eec8acde1a8681c56d14d5d1316798b)
|
|
Guenther
(This used to be commit 69e2850caffb089e8c23d773a688319d239f470f)
|
|
Guenther
(This used to be commit fe90f29b86fb0240337ea8b549cd6f2f7f2eb5ca)
|
|
flag.
Guenther
(This used to be commit 3e42ccc6096198458f66841f91234f670ceb59c4)
|
|
torture test to follow.
Guenther
(This used to be commit bfaeef756316852fbaa4a2bbc31b190b8b05c89f)
|
|
(This used to be commit 79b6001f919d398e52ceec29f5ebe6f0018e5660)
|
|
in having pointers for outgoing data when you can already modify the top-level
element.
This can be overridden (temporarily) by specifying the new "keepref"
attribute. Once we've removed keepref from all IDL files, I'll remove this
attribute as well.
(This used to be commit bdc6dd37503ced8322a671d225122ccffbb8bfec)
|
|
types from .h file that are now in pidls' aliases list.
(This used to be commit fadb9529ec7e1208b9f58a4e8b633d5a50633e82)
|
|
(This used to be commit 1ac8c96349c1241f75f7a133cfefa0df5aaae18e)
|
|
(This used to be commit 5556deee30616396bbaf1182eca08bf1213c0860)
|
|
should
now able to use constructions like these:
[size_is(20)] int *x; -> Pointer to array of 20 ints
[size_is(20)] int x[]; -> Array of 20 ints
[size_is(20)] int *x[]; -> Array of 20 pointers to ints
[size_is(20,)] int *x[] -> Array of 20 pointers to ints
[size_is(,20)] int *x[]; -> Pointer to array of 20 ints
[size_is(,20)] int **x; -> Pointer to pointer to array of 20 ints
[size_is(20)] int x[][30]; -> 20 blocks of 30 ints
(This used to be commit ecf583da71c2f80be124c17fccdcb284b47e0695)
|
|
The main difference in this new version is the extra data structure generated
between the IDL data structure and the NDR parser:
IDL -> NDR -> { ndr_parser, ndr_header, eparser, etc }
This makes the ndr_parser.pm internals much more sane.
Other changes include:
- Remove unnecessary calls with NDR_BUFFERS (for example, GUID doesn't have any buffers, just scalars) as well as some (unnecessary) nested setting of flags.
- Parse array loops in the C code rather then calling ndr_pull_array(). This allows us to have, for example, arrays of pointers or arrays of pointers to arrays, etc..
- Use if() {} rather then if () goto foo; everywhere
- NDR_IN no longer implies LIBNDR_FLAG_REF_ALLOC
- By default, top level pointers are now "ref" (as is the default in
most other IDL compilers). This can be overridden using the
default_pointer_top() property.
- initial work on new ethereal parser generators by Alan DeKok and me
- pidl now writes errors in the standard format used by compilers, which
is parsable by most editors
- ability to warn about the fact that pidl extension(s) have been used,
useful for making sure IDL files work with other IDL compilers.
oh, and there's probably some other things I can't think of right now..
(This used to be commit 13cf227615f6b9e0e5fa62e59197024410254f01)
|
|
array can now only be :
type *name[];
rather then :
type *name;
which was supported in the past. Warnings will be given when the first
syntax is used. Reasons for this change in behaviour include improved
readability and the fact that the second format makes dealing with multiple
levels of pointers harder.
(This used to be commit a416de5825c540fd3741731c4be05e9a659a6fdb)
|
|
the build on systems like solaris with the SunPRO compiler
(This used to be commit fe913ad11bf1c5e9fe04ed769a93b0ea16aa0a34)
|
|
- IDL fixes + adding comments
- Start working on dcom infrastructure
(This used to be commit ef0fc269f06c82594c34ad8673c76c5ea099250e)
|
|
http://www.hsc.fr/ressources/articles/win_net_srv
(This used to be commit 8d36dbed8c5bdc82176083b2c6f8d989ae903ba5)
|
|
(This used to be commit 201cb6116df8ad74569d78827815855105a1ea11)
|
|
interface. We now support an arbitrary set of flags to each parser,
and these can be used to control the string types. I have provided
some common IDL string types in librpc/idl/idl_types.h which needs to
be included in every IDL file.
* added IDL for the endpoint mapper. Added a test suite that enumerates
all endpoints on the server.
(This used to be commit d2665f36a75b482ff82733f72ffac938c2acf87a)
|
|
* use empty defaults instead of a dummy empty structure
(This used to be commit 555a340d3c0697b147799bc0a6615e01e196daf6)
|
|
in OpenPolicy and OpenPolicy2, so we don't in fact need the
[struct_len] attribute. This makes our IDL much closer to the MS IDL.
(This used to be commit f0a8f063a680b5d0a68c5ac7cccf9c9a13adfb81)
|
|
(This used to be commit 638eae6bae76eba5494e75fb7f3da8b1c205f892)
|
|
properly, I'm still investigating that.
* changed dcerpc fault status code to NT_STATUS_NETWORK_WRITE_FAULT,
which I think is a better mapping
(This used to be commit 9ad28f6ddbb777de7cac11e71c392b508c81b741)
|
|
* added levels 2 and 3 of dfs_Enum
(This used to be commit 3fa61c19826cd1415f561e1e5c40adcc59d4abf2)
|
|
(This used to be commit f32641f73f7ff12b797378b3b533603ff1d526b5)
|
|
(This used to be commit d9eb4511d0a51bafb53aa87ebb89ff03e0cbc46c)
|
|
* expanded the rpcecho test
* started adding the NETDFS pipe
(This used to be commit 095ab42cbdd5c1c5ab753e2eb275742ba822c8b9)
|