diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-18 15:42:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:58:42 -0500 |
commit | 35349a58df5b69446607fbd742a05f57f3515319 (patch) | |
tree | 8281d1645dfdd0fd56f85a0e885ae592f9b6b600 /source4/librpc | |
parent | 61fa658ebcaf2856d543d376b120932ad5a082f0 (diff) | |
download | samba-35349a58df5b69446607fbd742a05f57f3515319.tar.gz samba-35349a58df5b69446607fbd742a05f57f3515319.tar.bz2 samba-35349a58df5b69446607fbd742a05f57f3515319.zip |
r14542: Remove librpc, libndr and libnbt from includes.h
(This used to be commit 51b4270513752d2eafbe77f9de598de16ef84a1f)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/ndr/ndr.c | 2 | ||||
-rw-r--r-- | source4/librpc/ndr/ndr_basic.c | 1 | ||||
-rw-r--r-- | source4/librpc/ndr/ndr_compression.c | 1 | ||||
-rw-r--r-- | source4/librpc/ndr/ndr_misc.c | 1 | ||||
-rw-r--r-- | source4/librpc/ndr/ndr_obfuscate.c | 1 | ||||
-rw-r--r-- | source4/librpc/ndr/ndr_string.c | 1 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc.c | 3 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc.h | 1 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc_auth.c | 1 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc_connect.c | 1 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc_error.c | 1 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc_smb.c | 1 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc_smb2.c | 1 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc_sock.c | 1 | ||||
-rw-r--r-- | source4/librpc/rpc/table.c | 1 | ||||
-rw-r--r-- | source4/librpc/tables.pl | 1 |
16 files changed, 18 insertions, 1 deletions
diff --git a/source4/librpc/ndr/ndr.c b/source4/librpc/ndr/ndr.c index 1f626df13b..68252fbc72 100644 --- a/source4/librpc/ndr/ndr.c +++ b/source4/librpc/ndr/ndr.c @@ -28,7 +28,9 @@ */ #include "includes.h" +#include "librpc/ndr/libndr.h" #include "dlinklist.h" +#include "librpc/gen_ndr/dcerpc.h" #define NDR_BASE_MARSHALL_SIZE 1024 diff --git a/source4/librpc/ndr/ndr_basic.c b/source4/librpc/ndr/ndr_basic.c index 780931efb1..4b0444f00b 100644 --- a/source4/librpc/ndr/ndr_basic.c +++ b/source4/librpc/ndr/ndr_basic.c @@ -22,6 +22,7 @@ #include "includes.h" #include "system/network.h" +#include "librpc/ndr/libndr.h" #define NDR_SVAL(ndr, ofs) (NDR_BE(ndr)?RSVAL(ndr->data,ofs):SVAL(ndr->data,ofs)) #define NDR_IVAL(ndr, ofs) (NDR_BE(ndr)?RIVAL(ndr->data,ofs):IVAL(ndr->data,ofs)) diff --git a/source4/librpc/ndr/ndr_compression.c b/source4/librpc/ndr/ndr_compression.c index fb04a1799a..fabfd73704 100644 --- a/source4/librpc/ndr/ndr_compression.c +++ b/source4/librpc/ndr/ndr_compression.c @@ -22,6 +22,7 @@ #include "includes.h" #include "lib/compression/mszip.h" +#include "librpc/ndr/libndr.h" static NTSTATUS ndr_pull_compression_mszip_chunk(struct ndr_pull *ndrpull, struct ndr_push *ndrpush, diff --git a/source4/librpc/ndr/ndr_misc.c b/source4/librpc/ndr/ndr_misc.c index 5cffd33b46..8f131c471e 100644 --- a/source4/librpc/ndr/ndr_misc.c +++ b/source4/librpc/ndr/ndr_misc.c @@ -25,6 +25,7 @@ #include "includes.h" #include "system/network.h" +#include "librpc/ndr/libndr.h" _PUBLIC_ void ndr_print_ipv4_addr(struct ndr_print *ndr, const char *name, const struct ipv4_addr *_ip) { diff --git a/source4/librpc/ndr/ndr_obfuscate.c b/source4/librpc/ndr/ndr_obfuscate.c index 3b10e172b7..242b6dc074 100644 --- a/source4/librpc/ndr/ndr_obfuscate.c +++ b/source4/librpc/ndr/ndr_obfuscate.c @@ -21,6 +21,7 @@ */ #include "includes.h" +#include "librpc/ndr/libndr.h" /* handle obfuscated subcontext buffers, which in midl land are user-marshalled, but diff --git a/source4/librpc/ndr/ndr_string.c b/source4/librpc/ndr/ndr_string.c index 164c6d4a03..84c08b9656 100644 --- a/source4/librpc/ndr/ndr_string.c +++ b/source4/librpc/ndr/ndr_string.c @@ -21,6 +21,7 @@ */ #include "includes.h" +#include "librpc/ndr/libndr.h" /** pull a general string from the wire diff --git a/source4/librpc/rpc/dcerpc.c b/source4/librpc/rpc/dcerpc.c index 796511ef00..16721b4b03 100644 --- a/source4/librpc/rpc/dcerpc.c +++ b/source4/librpc/rpc/dcerpc.c @@ -24,8 +24,9 @@ #include "includes.h" #include "dlinklist.h" #include "lib/events/events.h" -#include "librpc/gen_ndr/ndr_dcerpc.h" +#include "librpc/rpc/dcerpc.h" #include "librpc/gen_ndr/ndr_misc.h" +#include "librpc/gen_ndr/ndr_dcerpc.h" #include "libcli/composite/composite.h" #include "auth/gensec/gensec.h" diff --git a/source4/librpc/rpc/dcerpc.h b/source4/librpc/rpc/dcerpc.h index 24f8df7d8b..7fcaa9d922 100644 --- a/source4/librpc/rpc/dcerpc.h +++ b/source4/librpc/rpc/dcerpc.h @@ -26,6 +26,7 @@ #include "core.h" #include "librpc/gen_ndr/dcerpc.h" +#include "librpc/ndr/libndr.h" enum dcerpc_transport_t { NCACN_NP, NCACN_IP_TCP, NCACN_IP_UDP, NCACN_VNS_IPC, NCACN_VNS_SPP, diff --git a/source4/librpc/rpc/dcerpc_auth.c b/source4/librpc/rpc/dcerpc_auth.c index 4f11667365..88132b15fe 100644 --- a/source4/librpc/rpc/dcerpc_auth.c +++ b/source4/librpc/rpc/dcerpc_auth.c @@ -25,6 +25,7 @@ #include "includes.h" #include "libcli/composite/composite.h" #include "auth/gensec/gensec.h" +#include "librpc/rpc/dcerpc.h" /* do a non-athenticated dcerpc bind diff --git a/source4/librpc/rpc/dcerpc_connect.c b/source4/librpc/rpc/dcerpc_connect.c index 6e0fc0c743..2b40935be6 100644 --- a/source4/librpc/rpc/dcerpc_connect.c +++ b/source4/librpc/rpc/dcerpc_connect.c @@ -31,6 +31,7 @@ #include "libcli/smb2/smb2.h" #include "libcli/smb2/smb2_calls.h" #include "auth/credentials/credentials.h" +#include "librpc/rpc/dcerpc.h" struct dcerpc_pipe_connect; diff --git a/source4/librpc/rpc/dcerpc_error.c b/source4/librpc/rpc/dcerpc_error.c index d5a456c221..1b77c2d9d3 100644 --- a/source4/librpc/rpc/dcerpc_error.c +++ b/source4/librpc/rpc/dcerpc_error.c @@ -21,6 +21,7 @@ */ #include "includes.h" +#include "librpc/rpc/dcerpc.h" struct dcerpc_fault_table { const char *errstr; diff --git a/source4/librpc/rpc/dcerpc_smb.c b/source4/librpc/rpc/dcerpc_smb.c index 6700e2f243..e16142d5c2 100644 --- a/source4/librpc/rpc/dcerpc_smb.c +++ b/source4/librpc/rpc/dcerpc_smb.c @@ -24,6 +24,7 @@ #include "includes.h" #include "libcli/raw/libcliraw.h" #include "libcli/composite/composite.h" +#include "librpc/rpc/dcerpc.h" /* transport private information used by SMB pipe transport */ struct smb_private { diff --git a/source4/librpc/rpc/dcerpc_smb2.c b/source4/librpc/rpc/dcerpc_smb2.c index d22ef6a9f2..01fd783e6f 100644 --- a/source4/librpc/rpc/dcerpc_smb2.c +++ b/source4/librpc/rpc/dcerpc_smb2.c @@ -26,6 +26,7 @@ #include "libcli/smb2/smb2.h" #include "libcli/smb2/smb2_calls.h" #include "libcli/raw/ioctl.h" +#include "librpc/rpc/dcerpc.h" /* transport private information used by SMB2 pipe transport */ struct smb2_private { diff --git a/source4/librpc/rpc/dcerpc_sock.c b/source4/librpc/rpc/dcerpc_sock.c index 7b6b45d2dd..0385a70d3c 100644 --- a/source4/librpc/rpc/dcerpc_sock.c +++ b/source4/librpc/rpc/dcerpc_sock.c @@ -27,6 +27,7 @@ #include "lib/socket/socket.h" #include "lib/stream/packet.h" #include "libcli/composite/composite.h" +#include "librpc/rpc/dcerpc.h" /* transport private information used by general socket pipe transports */ struct sock_private { diff --git a/source4/librpc/rpc/table.c b/source4/librpc/rpc/table.c index 21809ccc1c..9492b2b925 100644 --- a/source4/librpc/rpc/table.c +++ b/source4/librpc/rpc/table.c @@ -23,6 +23,7 @@ #include "includes.h" #include "dlinklist.h" +#include "librpc/rpc/dcerpc.h" #include "librpc/rpc/dcerpc_table.h" struct dcerpc_interface_list *dcerpc_pipes = NULL; diff --git a/source4/librpc/tables.pl b/source4/librpc/tables.pl index 9f30674de8..3dbb58853d 100644 --- a/source4/librpc/tables.pl +++ b/source4/librpc/tables.pl @@ -75,6 +75,7 @@ print TABLEC <<EOF; /* Automatically generated by tables.pl. DO NOT EDIT */ #include "includes.h" +#include "librpc/rpc/dcerpc.h" #include "librpc/rpc/dcerpc_table.h" EOF |