NIS+ support, from Ronnie Sahlberg.

svn path=/trunk/; revision=3401
This commit is contained in:
Guy Harris 2001-05-07 20:49:48 +00:00
parent 6ca59937d8
commit 4e6e4e047d
5 changed files with 1991 additions and 2 deletions

View File

@ -508,6 +508,7 @@ Ronnie Sahlberg <rsahlber@bigpond.net.au> {
SPRAY support
rquota support completed
XDR array support
NIS+ support
}
Borosa Tomislav <tomislav.borosa@SIEMENS.HR> {

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.315 2001/04/24 19:29:12 guy Exp $
# $Id: Makefile.am,v 1.316 2001/05/07 20:49:48 guy Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@zing.org>
@ -161,6 +161,7 @@ DISSECTOR_SOURCES = \
packet-ncp2222.c \
packet-netbios.c \
packet-nfs.c \
packet-nisplus.c \
packet-nlm.c \
packet-nntp.c \
packet-ntp.c \
@ -289,6 +290,7 @@ noinst_HEADERS = \
packet-ncp-int.h \
packet-netbios.h \
packet-nfs.h \
packet-nisplus.h \
packet-nlm.h \
packet-ntp.h \
packet-null.h \

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.103 2001/04/24 19:29:12 guy Exp $
# $Id: Makefile.nmake,v 1.104 2001/05/07 20:49:48 guy Exp $
include config.nmake
include <win32.mak>
@ -114,6 +114,7 @@ DISSECTOR_SOURCES = \
packet-ncp2222.c \
packet-netbios.c \
packet-nfs.c \
packet-nisplus.c \
packet-nlm.c \
packet-nntp.c \
packet-ntp.c \

1922
packet-nisplus.c Normal file

File diff suppressed because it is too large Load Diff

63
packet-nisplus.h Normal file
View File

@ -0,0 +1,63 @@
/* packet-nisplus.h
* 2001 Ronnie Sahlberg <rsahelber@bigpond.net.au>
*
* 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_NIS_H
#define PACKET_NIS_H
#define NISPROC_NULL 0
#define NISPROC_LOOKUP 1
#define NISPROC_ADD 2
#define NISPROC_MODIFY 3
#define NISPROC_REMOVE 4
#define NISPROC_IBLIST 5
#define NISPROC_IBADD 6
#define NISPROC_IBMODIFY 7
#define NISPROC_IBREMOVE 8
#define NISPROC_IBFIRST 9
#define NISPROC_IBNEXT 10
#define NISPROC_FINDDIRECTORY 12
#define NISPROC_STATUS 14
#define NISPROC_DUMPLOG 15
#define NISPROC_DUMP 16
#define NISPROC_CALLBACK 17
#define NISPROC_CPTIME 18
#define NISPROC_CHECKPOINT 19
#define NISPROC_PING 20
#define NISPROC_SERVSTATE 21
#define NISPROC_MKDIR 22
#define NISPROC_RMDIR 23
#define NISPROC_UPDKEYS 24
#define NIS_PROGRAM 100300
#define CBPROC_NULL 0
#define CBPROC_RECEIVE 1
#define CBPROC_FINISH 2
#define CBPROC_ERROR 3
#define CB_PROGRAM 100302
#endif