Rquota support, from Mike Frisch.

svn path=/trunk/; revision=3082
This commit is contained in:
Guy Harris 2001-02-27 19:40:58 +00:00
parent f75a4d1d87
commit ed665a1b50
5 changed files with 110 additions and 2 deletions

View File

@ -465,6 +465,7 @@ Kevin Shi <techishi@ms22.hinet.net> {
Mike Frisch <mfrisch@saturn.tlug.org> {
NFSv4 support
HCLNFSD support
rquota support
}
Burke Lau <burke_lau@agilent.com> {

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.285 2001/02/19 23:16:36 guy Exp $
# $Id: Makefile.am,v 1.286 2001/02/27 19:40:57 guy Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@zing.org>
@ -173,6 +173,7 @@ DISSECTOR_SOURCES = \
packet-ripng.c \
packet-rlogin.c \
packet-rpc.c \
packet-rquota.c \
packet-rsh.c \
packet-rsvp.c \
packet-rtcp.c \
@ -280,6 +281,7 @@ noinst_HEADERS = \
packet-raw.h \
packet-ripng.h \
packet-rpc.h \
packet-rquota.h \
packet-rtcp.h \
packet-rtp.h \
packet-rx.h \

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: nmake -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.81 2001/02/13 00:17:55 guy Exp $
# $Id: Makefile.nmake,v 1.82 2001/02/27 19:40:58 guy Exp $
include config.nmake
@ -123,6 +123,7 @@ DISSECTOR_SOURCES = \
packet-ripng.c \
packet-rlogin.c \
packet-rpc.c \
packet-rquota.c \
packet-rsh.c \
packet-rsvp.c \
packet-rtcp.c \

72
packet-rquota.c Normal file
View File

@ -0,0 +1,72 @@
/* packet-rquota.c
* Routines for rquota dissection
* Copyright 2001, Mike Frisch <frisch@hummingbird.com>
*
* $Id: packet-rquota.c,v 1.1 2001/02/27 19:40:58 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* Copyright 1998 Gerald Combs
*
* Copied from packet-ypxfr.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-rquota.h"
static int proto_rquota = -1;
static gint ett_rquota = -1;
/* proc number, "proc name", dissect_request, dissect_reply */
/* NULL as function pointer means: type of arguments is "void". */
static const vsff rquota1_proc[] = {
{ RQUOTAPROC_NULL, "NULL", NULL, NULL },
{ 0, NULL, NULL, NULL }
};
/* end of RQUOTA version 1 */
void
proto_register_rquota(void)
{
static gint *ett[] = {
&ett_rquota
};
proto_rquota = proto_register_protocol("Remote Quota",
"RQUOTA", "rquota");
proto_register_subtree_array(ett, array_length(ett));
}
void
proto_reg_handoff_rquota(void)
{
/* Register the protocol as RPC */
rpc_init_prog(proto_rquota, RQUOTA_PROGRAM, ett_rquota);
/* Register the procedure tables */
rpc_init_proc_table(RQUOTA_PROGRAM, 1, rquota1_proc);
}

32
packet-rquota.h Normal file
View File

@ -0,0 +1,32 @@
/* packet-rquota.h
*
* $Id: packet-rquota.h,v 1.1 2001/02/27 19:40:58 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* Copyright 1998 Gerald Combs
*
*
* 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.
*/
#ifndef PACKET_RQUOTA_H
#define PACKET_RQUOTA_H
#define RQUOTAPROC_NULL 0
#define RQUOTA_PROGRAM 100011
#endif