summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-11-03 10:30:37 +0100
committerGünther Deschner <gd@samba.org>2011-11-03 18:35:08 +0100
commit768b42f334fc2504ff9e1e7ec77e4d366220aef8 (patch)
tree9a45b0c37b4fbb3026f3e914b51e91e76a0fb60f
parent185b94eefa009e852f93d9a00e4e8c15c64a0869 (diff)
downloadsamba-768b42f334fc2504ff9e1e7ec77e4d366220aef8.tar.gz
samba-768b42f334fc2504ff9e1e7ec77e4d366220aef8.tar.bz2
samba-768b42f334fc2504ff9e1e7ec77e4d366220aef8.zip
nbt: move netlogon_samlogon_response into librpc/ndr/ndr_nbt.h.
Guenther
-rw-r--r--libcli/netlogon/netlogon.h11
-rw-r--r--librpc/ndr/ndr_nbt.h11
2 files changed, 11 insertions, 11 deletions
diff --git a/libcli/netlogon/netlogon.h b/libcli/netlogon/netlogon.h
index a68c7fab82..0bf2a4c85c 100644
--- a/libcli/netlogon/netlogon.h
+++ b/libcli/netlogon/netlogon.h
@@ -27,17 +27,6 @@
#include "librpc/gen_ndr/ndr_misc.h"
#include "librpc/gen_ndr/ndr_security.h"
-struct netlogon_samlogon_response
-{
- uint32_t ntver;
- union {
- struct NETLOGON_SAM_LOGON_RESPONSE_NT40 nt4;
- struct NETLOGON_SAM_LOGON_RESPONSE nt5;
- struct NETLOGON_SAM_LOGON_RESPONSE_EX nt5_ex;
- } data;
-
-};
-
struct nbt_netlogon_response
{
enum {NETLOGON_GET_PDC, NETLOGON_SAMLOGON, NETLOGON_RESPONSE2} response_type;
diff --git a/librpc/ndr/ndr_nbt.h b/librpc/ndr/ndr_nbt.h
index 65975765cb..bda0e210cf 100644
--- a/librpc/ndr/ndr_nbt.h
+++ b/librpc/ndr/ndr_nbt.h
@@ -29,6 +29,17 @@
NDR_SCALAR_PROTO(nbt_string, const char *)
+struct netlogon_samlogon_response
+{
+ uint32_t ntver;
+ union {
+ struct NETLOGON_SAM_LOGON_RESPONSE_NT40 nt4;
+ struct NETLOGON_SAM_LOGON_RESPONSE nt5;
+ struct NETLOGON_SAM_LOGON_RESPONSE_EX nt5_ex;
+ } data;
+
+};
+
enum ndr_err_code ndr_push_NETLOGON_SAM_LOGON_REQUEST(struct ndr_push *ndr, int ndr_flags, const struct NETLOGON_SAM_LOGON_REQUEST *r);
enum ndr_err_code ndr_pull_NETLOGON_SAM_LOGON_REQUEST(struct ndr_pull *ndr, int ndr_flags, struct NETLOGON_SAM_LOGON_REQUEST *r);
enum ndr_err_code ndr_push_NETLOGON_SAM_LOGON_RESPONSE_EX_with_flags(struct ndr_push *ndr, int ndr_flags, const struct NETLOGON_SAM_LOGON_RESPONSE_EX *r);