| 1 | #/*
|
|---|
| 2 | Unix SMB/CIFS implementation.
|
|---|
| 3 |
|
|---|
| 4 | routines for marshalling/unmarshalling special netlogon types
|
|---|
| 5 |
|
|---|
| 6 | Copyright (C) Andrew Tridgell 2005
|
|---|
| 7 | Copyright (C) Andrew Bartlett <abartlet@samba.org> 2008
|
|---|
| 8 | Copyright (C) Guenther Deschner 2011
|
|---|
| 9 |
|
|---|
| 10 | This program is free software; you can redistribute it and/or modify
|
|---|
| 11 | it under the terms of the GNU General Public License as published by
|
|---|
| 12 | the Free Software Foundation; either version 3 of the License, or
|
|---|
| 13 | (at your option) any later version.
|
|---|
| 14 |
|
|---|
| 15 | This program is distributed in the hope that it will be useful,
|
|---|
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 18 | GNU General Public License for more details.
|
|---|
| 19 |
|
|---|
| 20 | You should have received a copy of the GNU General Public License
|
|---|
| 21 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|---|
| 22 | */
|
|---|
| 23 |
|
|---|
| 24 | /* The following definitions come from ../librpc/ndr/ndr_nbt.c */
|
|---|
| 25 |
|
|---|
| 26 | #ifndef _LIBRPC_NDR_NDR_NBT_H
|
|---|
| 27 | #define _LIBRPC_NDR_NDR_NBT_H
|
|---|
| 28 |
|
|---|
| 29 | #include "librpc/gen_ndr/nbt.h"
|
|---|
| 30 |
|
|---|
| 31 | NDR_SCALAR_PROTO(nbt_string, const char *)
|
|---|
| 32 |
|
|---|
| 33 | struct netlogon_samlogon_response
|
|---|
| 34 | {
|
|---|
| 35 | uint32_t ntver;
|
|---|
| 36 | union {
|
|---|
| 37 | struct NETLOGON_SAM_LOGON_RESPONSE_NT40 nt4;
|
|---|
| 38 | struct NETLOGON_SAM_LOGON_RESPONSE nt5;
|
|---|
| 39 | struct NETLOGON_SAM_LOGON_RESPONSE_EX nt5_ex;
|
|---|
| 40 | } data;
|
|---|
| 41 |
|
|---|
| 42 | };
|
|---|
| 43 |
|
|---|
| 44 | enum ndr_err_code ndr_push_NETLOGON_SAM_LOGON_REQUEST(struct ndr_push *ndr, int ndr_flags, const struct NETLOGON_SAM_LOGON_REQUEST *r);
|
|---|
| 45 | enum ndr_err_code ndr_pull_NETLOGON_SAM_LOGON_REQUEST(struct ndr_pull *ndr, int ndr_flags, struct NETLOGON_SAM_LOGON_REQUEST *r);
|
|---|
| 46 | 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);
|
|---|
| 47 | enum ndr_err_code ndr_pull_NETLOGON_SAM_LOGON_RESPONSE_EX_with_flags(struct ndr_pull *ndr, int ndr_flags, struct NETLOGON_SAM_LOGON_RESPONSE_EX *r,
|
|---|
| 48 | uint32_t nt_version_flags);
|
|---|
| 49 | enum ndr_err_code ndr_push_netlogon_samlogon_response(struct ndr_push *ndr, int ndr_flags, const struct netlogon_samlogon_response *r);
|
|---|
| 50 | enum ndr_err_code ndr_pull_netlogon_samlogon_response(struct ndr_pull *ndr, int ndr_flags, struct netlogon_samlogon_response *r);
|
|---|
| 51 |
|
|---|
| 52 | #endif /* _LIBRPC_NDR_NDR_NBT_H */
|
|---|