summaryrefslogtreecommitdiff
path: root/source4/librpc/ndr/ndr_echo.c
blob: e2bb062d2e447bc6c2b0eb1f8c8994044fc2ef68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* 
   Unix SMB/CIFS implementation.

   routines for marshalling/unmarshalling rpcecho pipe

   Copyright (C) Andrew Tridgell 2003
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/


#include "includes.h"


/*
  parse a addone
*/
NTSTATUS ndr_pull_rpcecho_addone(struct ndr_pull *ndr, 
				 struct rpcecho_addone *r)
{
	NDR_CHECK(ndr_pull_uint32(ndr, &r->out.data));
	return NT_STATUS_OK;
}


/*
  push a addone
*/
NTSTATUS ndr_push_rpcecho_addone(struct ndr_push *ndr, 
				 struct rpcecho_addone *r)
{
	NDR_CHECK(ndr_push_uint32(ndr, r->in.data));
	return NT_STATUS_OK;
}


/*
  parse a echodata
*/
NTSTATUS ndr_pull_rpcecho_echodata(struct ndr_pull *ndr, 
				   struct rpcecho_echodata *r)
{
	NDR_CHECK(ndr_pull_uint32(ndr, &r->out.len));
	NDR_ALLOC_N(ndr, r->out.data, r->out.len);
	NDR_CHECK(ndr_pull_bytes(ndr, r->out.data, r->out.len));
	return NT_STATUS_OK;
}

/*
  push a echodata
*/
NTSTATUS ndr_push_rpcecho_echodata(struct ndr_push *ndr, 
				   struct rpcecho_echodata *r)
{
	NDR_CHECK(ndr_push_uint32(ndr, r->in.len));
	NDR_CHECK(ndr_push_uint32(ndr, r->in.len));
	NDR_CHECK(ndr_push_bytes(ndr, r->in.data, r->in.len));
	return NT_STATUS_OK;
}

/*
  parse a sinkdata
*/
NTSTATUS ndr_pull_rpcecho_sinkdata(struct ndr_pull *ndr, 
				   struct rpcecho_sinkdata *r)
{
	return NT_STATUS_OK;
}

/*
  push a sinkdata
*/
NTSTATUS ndr_push_rpcecho_sinkdata(struct ndr_push *ndr, 
				   struct rpcecho_sinkdata *r)
{
	NDR_CHECK(ndr_push_uint32(ndr, r->in.len));
	NDR_CHECK(ndr_push_uint32(ndr, r->in.len));
	NDR_CHECK(ndr_push_bytes(ndr, r->in.data, r->in.len));
	return NT_STATUS_OK;
}

/*
  parse a sourcedata
*/
NTSTATUS ndr_pull_rpcecho_sourcedata(struct ndr_pull *ndr, 
				   struct rpcecho_sourcedata *r)
{
	NDR_CHECK(ndr_pull_uint32(ndr, &r->out.len));
	NDR_ALLOC_N(ndr, r->out.data, r->out.len);
	NDR_CHECK(ndr_pull_bytes(ndr, r->out.data, r->out.len));
	return NT_STATUS_OK;
}

/*
  push a sourcedata
*/
NTSTATUS ndr_push_rpcecho_sourcedata(struct ndr_push *ndr, 
				   struct rpcecho_sourcedata *r)
{
	NDR_CHECK(ndr_push_uint32(ndr, r->in.len));
	return NT_STATUS_OK;
}