X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppdump%2Fpppdump.c;h=95e692c8774af4513747d7f7ae0f22810b5db6fe;hb=620a979242257664405b8139611502c4e7a7e25e;hp=3d3ad1971e1d57404df3c2114e91124cfc9fd6ab;hpb=5480ff0d77f884d0e1d97388ac24926a00b322a5;p=ppp.git diff --git a/pppdump/pppdump.c b/pppdump/pppdump.c index 3d3ad19..95e692c 100644 --- a/pppdump/pppdump.c +++ b/pppdump/pppdump.c @@ -2,15 +2,40 @@ * pppdump - print out the contents of a record file generated by * pppd in readable form. * - * Copyright (C) 1999 Paul Mackerras. All rights reserved. + * Copyright (c) 1999 Paul Mackerras. All rights reserved. * - * 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. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. The name(s) of the authors of this software must not be used to + * endorse or promote products derived from this software without + * prior written permission. + * + * 4. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by Paul Mackerras + * ". + * + * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO + * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY + * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN + * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING + * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include +#include #include #include #include "ppp_defs.h" @@ -29,6 +54,12 @@ int tot_sent, tot_rcvd; extern int optind; extern char *optarg; +void dumplog(); +void dumpppp(); +void show_time(); +void handle_ccp(); + +int main(ac, av) int ac; char **av; @@ -81,6 +112,7 @@ main(ac, av) exit(0); } +void dumplog(f) FILE *f; { @@ -220,6 +252,7 @@ struct pkt { unsigned char dbuf[8192]; +void dumpppp(f) FILE *f; { @@ -405,6 +438,7 @@ struct compressor *compressors[] = { NULL }; +void handle_ccp(cp, dp, len) struct pkt *cp; u_char *dp; @@ -461,6 +495,7 @@ handle_ccp(cp, dp, len) } } +void show_time(f, c) FILE *f; int c;