add WITH_SENDFILE profiling data (from Pierre Belanger)
[Samba.git] / source / utils / rpccheck.c
blobe8e61e9f71802b25b3716e0fbbf25e5ea26f8d90
1 /*
2 Unix SMB/Netbios implementation.
3 Version 2.2.
5 Copyright (C) Jean François Micouleau 2001
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 main()
26 char filter[]="0123456789ABCDEF";
28 char s[128];
29 char d=0;
30 int x=0;
31 prs_struct ps;
32 TALLOC_CTX *ctx;
34 /* change that struct */
35 SAMR_R_QUERY_USERINFO rpc_stub;
37 ZERO_STRUCT(rpc_stub);
39 setup_logging("", True);
40 DEBUGLEVEL=10;
42 ctx=talloc_init();
43 if (!ctx)
44 exit(1);
46 prs_init(&ps, 1600, 4, ctx, MARSHALL);
48 while (scanf("%s", s)!=-1) {
49 if (strlen(s)==2 && strchr(filter, *s)!=NULL && strchr(filter, *(s+1))!=NULL) {
50 d=strtol(s, NULL, 16);
51 if(!prs_append_data(&ps, &d, 1))
52 printf("error while reading data\n");
56 prs_switch_type(&ps, UNMARSHALL);
57 prs_set_offset(&ps, 0);
59 /* change that call */
60 if(!samr_io_r_query_userinfo("", &rpc_stub, &ps, 0))
61 printf("error while UNMARSHALLING the data\n");
63 printf("\n");