From: Stefan Metzmacher Date: Sun, 13 Mar 2011 13:05:19 +0000 (+0100) Subject: librpc/rpc: move enum dcerpc_transport_t to rpc_common.h X-Git-Tag: samba-3.6.0pre2~500 X-Git-Url: http://git.samba.org/samba.git/?p=samba.git;a=commitdiff_plain;h=83c55ac67e488787a264f3981eabb6f69e7b0e87;ds=sidebyside librpc/rpc: move enum dcerpc_transport_t to rpc_common.h metze --- diff --git a/librpc/rpc/rpc_common.h b/librpc/rpc/rpc_common.h index 5d1bde00e09..69ee69411a7 100644 --- a/librpc/rpc/rpc_common.h +++ b/librpc/rpc/rpc_common.h @@ -29,9 +29,15 @@ struct ndr_interface_call; struct ndr_push; struct ndr_pull; struct ncacn_packet; +struct epm_floor; struct tevent_context; struct tstream_context; +enum dcerpc_transport_t { + NCA_UNKNOWN, NCACN_NP, NCACN_IP_TCP, NCACN_IP_UDP, NCACN_VNS_IPC, + NCACN_VNS_SPP, NCACN_AT_DSP, NCADG_AT_DDP, NCALRPC, NCACN_UNIX_STREAM, + NCADG_UNIX_DGRAM, NCACN_HTTP, NCADG_IPX, NCACN_SPX, NCACN_INTERNAL }; + /* The following definitions come from ../librpc/rpc/dcerpc_error.c */ const char *dcerpc_errstr(TALLOC_CTX *mem_ctx, uint32_t fault_code); diff --git a/source3/librpc/rpc/dcerpc.h b/source3/librpc/rpc/dcerpc.h index 3cfd229f33b..52f93abeca4 100644 --- a/source3/librpc/rpc/dcerpc.h +++ b/source3/librpc/rpc/dcerpc.h @@ -23,15 +23,12 @@ * If you remove any functions or change their signature, update * the so version number. */ -#ifndef __DCERPC_H__ -#define __DCERPC_H__ +#ifndef _S3_DCERPC_H__ +#define _S3_DCERPC_H__ -#define SMB_RPC_INTERFACE_VERSION 1 +#include "../librpc/rpc/rpc_common.h" -enum dcerpc_transport_t { - NCA_UNKNOWN, NCACN_NP, NCACN_IP_TCP, NCACN_IP_UDP, NCACN_VNS_IPC, - NCACN_VNS_SPP, NCACN_AT_DSP, NCADG_AT_DDP, NCALRPC, NCACN_UNIX_STREAM, - NCADG_UNIX_DGRAM, NCACN_HTTP, NCADG_IPX, NCACN_SPX, NCACN_INTERNAL }; +#define SMB_RPC_INTERFACE_VERSION 1 /** this describes a binding to a particular transport/pipe */ struct dcerpc_binding { @@ -162,6 +159,4 @@ NTSTATUS dcerpc_check_auth(struct pipe_auth_data *auth, DATA_BLOB *raw_pkt, size_t *pad_len); -#include "../librpc/rpc/rpc_common.h" - -#endif /* __DCERPC_H__ */ +#endif /* __S3_DCERPC_H__ */ diff --git a/source4/librpc/rpc/dcerpc.h b/source4/librpc/rpc/dcerpc.h index eb0dbee49e8..fe3ce93d67e 100644 --- a/source4/librpc/rpc/dcerpc.h +++ b/source4/librpc/rpc/dcerpc.h @@ -24,23 +24,19 @@ * If you remove any functions or change their signature, update * the so version number. */ -#ifndef __DCERPC_H__ -#define __DCERPC_H__ +#ifndef __S4_DCERPC_H__ +#define __S4_DCERPC_H__ #include "../lib/util/data_blob.h" #include "librpc/gen_ndr/dcerpc.h" #include "../librpc/ndr/libndr.h" +#include "../librpc/rpc/rpc_common.h" struct tevent_context; struct tevent_req; struct dcerpc_binding_handle; struct tstream_context; -enum dcerpc_transport_t { - NCA_UNKNOWN, NCACN_NP, NCACN_IP_TCP, NCACN_IP_UDP, NCACN_VNS_IPC, - NCACN_VNS_SPP, NCACN_AT_DSP, NCADG_AT_DDP, NCALRPC, NCACN_UNIX_STREAM, - NCADG_UNIX_DGRAM, NCACN_HTTP, NCADG_IPX, NCACN_SPX, NCACN_INTERNAL }; - /* this defines a generic security context for signed/sealed dcerpc pipes. */ @@ -383,6 +379,4 @@ enum dcerpc_transport_t dcerpc_transport_by_endpoint_protocol(int prot); const char *dcerpc_floor_get_rhs_data(TALLOC_CTX *mem_ctx, struct epm_floor *epm_floor); -#include "../librpc/rpc/rpc_common.h" - -#endif /* __DCERPC_H__ */ +#endif /* __S4_DCERPC_H__ */