summaryrefslogtreecommitdiff
path: root/packet-stat.c
diff options
context:
space:
mode:
authorNathan Neulinger <nneul@umr.edu>1999-11-11 21:22:00 +0000
committerNathan Neulinger <nneul@umr.edu>1999-11-11 21:22:00 +0000
commit59bffe6e97d173586046f2205acf94a712643b2f (patch)
treeeae35a570c67cf23c47c12709447482c9f1b3a6a /packet-stat.c
parent1d554ab6c9ab6d5383f02f7b10bd775bda8fcefc (diff)
downloadwireshark-59bffe6e97d173586046f2205acf94a712643b2f.tar.gz
Added mount dissector.
Added stat dissector. Enhancements to portmap dissector. Added rpc_prog_name function to packet-rpc to retrieve the name of an rpc program. This should likely eventually be modified to use the /etc/rpc or rpc.bynumber NIS maps in addition to the programs that are registered within ethereal. svn path=/trunk/; revision=1016
Diffstat (limited to 'packet-stat.c')
-rw-r--r--packet-stat.c82
1 files changed, 82 insertions, 0 deletions
diff --git a/packet-stat.c b/packet-stat.c
new file mode 100644
index 0000000000..55e8970233
--- /dev/null
+++ b/packet-stat.c
@@ -0,0 +1,82 @@
+/* packet-stat.c
+ * Routines for stat dissection
+ *
+ * $Id: packet-stat.c,v 1.1 1999/11/11 21:22:00 nneul Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@unicom.net>
+ * Copyright 1998 Gerald Combs
+ *
+ * Copied from packet-smb.c
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+
+#include "packet-rpc.h"
+#include "packet-stat.h"
+
+static int proto_stat = -1;
+
+/* proc number, "proc name", dissect_request, dissect_reply */
+/* NULL as function pointer means: take the generic one. */
+
+const vsff stat_proc[] = {
+ { 0, "NULL", NULL, NULL },
+ { STATPROC_STAT, "STAT",
+ NULL, NULL },
+ { STATPROC_MON, "MON",
+ NULL, NULL },
+ { STATPROC_UNMON, "UNMON",
+ NULL, NULL },
+ { STATPROC_UNMON_ALL, "UNMON_ALL",
+ NULL, NULL },
+ { STATPROC_SIMU_CRASH, "SIMU_CRASH",
+ NULL, NULL },
+ { STATPROC_NOTIFY, "NOTIFY",
+ NULL, NULL },
+ { 0, NULL, NULL, NULL }
+};
+/* end of stat version 1 */
+
+
+void
+proto_register_stat(void)
+{
+ static hf_register_info hf[] = {
+#if 0
+ { &hf_stat_path, {
+ "Path", "stat.path", FT_STRING, BASE_DEC,
+ NULL, 0, "Path" }},
+#endif
+ };
+
+ proto_stat = proto_register_protocol("Status Service", "stat");
+ proto_register_field_array(proto_stat, hf, array_length(hf));
+
+ /* Register the protocol as RPC */
+ rpc_init_prog(proto_stat, STAT_PROGRAM, ETT_STAT);
+ /* Register the procedure tables */
+ rpc_init_proc_table(STAT_PROGRAM, 1, stat_proc);
+}
+