2007-03-27 Ralf Corsépius <ralf.corsepius@rtems.org>

* libnetworking/net/ppp-comp.h: Eliminate __P(). Cosmetics from
	  FreeBSD.
This commit is contained in:
Ralf Corsepius
2007-03-27 16:15:00 +00:00
parent 768fe4ec49
commit 3c4c5e0854
2 changed files with 24 additions and 19 deletions
+2
View File
@@ -1,5 +1,7 @@
2007-03-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/net/ppp-comp.h: Eliminate __P(). Cosmetics from
FreeBSD.
* libnetworking/machine/in_cksum.h: Eliminate __P().
* pppd/auth.c, pppd/cbcp.c, pppd/ccp.c, pppd/chap.c,
pppd/chap_ms.c, pppd/chat.c, pppd/demand.c, pppd/fsm.c,
+22 -19
View File
@@ -1,6 +1,7 @@
/*
* ppp-comp.h - Definitions for doing PPP packet compression.
*
*/
/*
* Copyright (c) 1994 The Australian National University.
* All rights reserved.
*
@@ -23,7 +24,10 @@
* ON AN "AS IS" BASIS, AND THE AUSTRALIAN NATIONAL UNIVERSITY HAS NO
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
* OR MODIFICATIONS.
*
* $FreeBSD: src/sys/net/ppp_comp.h,v 1.12 2005/01/07 01:45:35 imp Exp $
*/
/*
* $Id$
*/
@@ -51,36 +55,35 @@ struct compressor {
int compress_proto; /* CCP compression protocol number */
/* Allocate space for a compressor (transmit side) */
void *(*comp_alloc) __P((u_char *options, int opt_len));
void *(*comp_alloc)(u_char *options, int opt_len);
/* Free space used by a compressor */
void (*comp_free) __P((void *state));
void (*comp_free)(void *state);
/* Initialize a compressor */
int (*comp_init) __P((void *state, u_char *options, int opt_len,
int unit, int hdrlen, int debug));
int (*comp_init)(void *state, u_char *options, int opt_len,
int unit, int hdrlen, int debug);
/* Reset a compressor */
void (*comp_reset) __P((void *state));
void (*comp_reset)(void *state);
/* Compress a packet */
int (*compress) __P((void *state, PACKETPTR *mret,
PACKETPTR mp, int orig_len, int max_len));
int (*compress)(void *state, PACKETPTR *mret, PACKETPTR mp,
int orig_len, int max_len);
/* Return compression statistics */
void (*comp_stat) __P((void *state, struct compstat *stats));
void (*comp_stat)(void *state, struct compstat *stats);
/* Allocate space for a decompressor (receive side) */
void *(*decomp_alloc) __P((u_char *options, int opt_len));
void *(*decomp_alloc)(u_char *options, int opt_len);
/* Free space used by a decompressor */
void (*decomp_free) __P((void *state));
void (*decomp_free)(void *state);
/* Initialize a decompressor */
int (*decomp_init) __P((void *state, u_char *options, int opt_len,
int unit, int hdrlen, int mru, int debug));
int (*decomp_init)(void *state, u_char *options, int opt_len,
int unit, int hdrlen, int mru, int debug);
/* Reset a decompressor */
void (*decomp_reset) __P((void *state));
void (*decomp_reset)(void *state);
/* Decompress a packet. */
int (*decompress) __P((void *state, PACKETPTR mp,
PACKETPTR *dmpp));
int (*decompress)(void *state, PACKETPTR mp, PACKETPTR *dmpp);
/* Update state for an incompressible packet received */
void (*incomp) __P((void *state, PACKETPTR mp));
void (*incomp)(void *state, PACKETPTR mp);
/* Return decompression statistics */
void (*decomp_stat) __P((void *state, struct compstat *stats));
void (*decomp_stat)(void *state, struct compstat *stats);
};
#endif /* PACKETPTR */