Replace the types from sys/types.h and netinet/in.h by their glib.h
[obnox/wireshark/wip.git] / packet-stat-notify.c
1 /* packet-stat.c
2  * Routines for async NSM stat callback dissection
3  * 2001 Ronnie Sahlberg <See AUTHORS for email>
4  *
5  * $Id: packet-stat-notify.c,v 1.10 2002/08/02 23:36:03 jmayer Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30
31 #include "packet-rpc.h"
32 #include "packet-stat-notify.h"
33
34 static int proto_statnotify = -1;
35 static int hf_statnotify_name = -1;
36 static int hf_statnotify_state = -1;
37 static int hf_statnotify_priv = -1;
38
39 static gint ett_statnotify = -1;
40
41
42 static int
43 dissect_statnotify_mon(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
44 {
45
46         offset = dissect_rpc_string(tvb,tree,hf_statnotify_name,offset,NULL);
47
48         offset = dissect_rpc_uint32(tvb,tree,hf_statnotify_state,offset);
49
50         proto_tree_add_item(tree,hf_statnotify_priv,tvb,offset,16,FALSE);
51         offset += 16;
52
53         return offset;
54 }
55
56 /* proc number, "proc name", dissect_request, dissect_reply */
57 /* NULL as function pointer means: type of arguments is "void". */
58
59 static const vsff statnotify_proc[] = {
60     { 0, "NULL", NULL, NULL },
61     { STATNOTIFYPROC_MON,   "MON-CALLBACK",      
62                 dissect_statnotify_mon, NULL },
63     { 0, NULL, NULL, NULL }
64 };
65 /* end of stat-notify version 1 */
66
67
68 void
69 proto_register_statnotify(void)
70 {
71         static hf_register_info hf[] = {
72                 { &hf_statnotify_name, {
73                         "Name", "statnotify.name", FT_STRING, BASE_DEC,
74                         NULL, 0, "Name of client that changed", HFILL }},
75                 { &hf_statnotify_state, {
76                         "State", "statnotify.state", FT_UINT32, BASE_DEC,
77                         NULL, 0, "New state of client that changed", HFILL }},
78                 { &hf_statnotify_priv, {
79                         "Priv", "statnotify.priv", FT_BYTES, BASE_HEX,
80                         NULL, 0, "Client supplied opaque data", HFILL }},
81         };
82         
83         static gint *ett[] = {
84                 &ett_statnotify,
85         };
86
87         proto_statnotify = proto_register_protocol("Network Status Monitor CallBack Protocol", "STAT-CB", "statnotify");
88         proto_register_field_array(proto_statnotify, hf, array_length(hf));
89         proto_register_subtree_array(ett, array_length(ett));
90 }
91
92 void
93 proto_reg_handoff_statnotify(void)
94 {
95         /* Register the protocol as RPC */
96         rpc_init_prog(proto_statnotify, STATNOTIFY_PROGRAM, ett_statnotify);
97         /* Register the procedure tables */
98         rpc_init_proc_table(STATNOTIFY_PROGRAM, 1, statnotify_proc);
99 }