OpenBSD CVS

CVS log for src/usr.sbin/ppp/Attic/systems.c


[BACK] Up to [local] / src / usr.sbin / ppp

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.9, Mon Aug 31 00:21:43 1998 UTC (25 years, 9 months ago) by brian
Branch: MAIN
CVS Tags: HEAD
Changes since 1.8: +1 -1 lines
FILE REMOVED

Upgrade ppp to version 2.0

This adds a number of features including:
o Multilink
o Callback (including CBCP)
o DNS negotiation (client & server)
o Easy to configure masquerading/packet aliasing
o Any number of diagnostic socket connections (limits DOS attacks)
o Sticky routes (ppp updates the routing table when the IP number is changed)

See the file README.changes for things that effect current
configurations.

Revision 1.8 / (download) - annotate - [select for diffs], Wed Jan 21 02:13:41 1998 UTC (26 years, 4 months ago) by brian
Branch: MAIN
CVS Tags: OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.7: +1 -3 lines
Diff to previous 1.7 (colored)

Remove unused #includes.
Make various bits static.
Remove unused variables.
Submitted by: eivind

Revision 1.7 / (download) - annotate - [select for diffs], Wed Dec 24 09:30:53 1997 UTC (26 years, 5 months ago) by brian
Branch: MAIN
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored)

Cosmetic (style):
  sizeof(var) -> sizeof var
  sizeof type -> sizeof(type)

Suggested by: J Wunsch <j@uriah.heep.sax.de>

Revision 1.6 / (download) - annotate - [select for diffs], Sun Dec 21 03:41:27 1997 UTC (26 years, 5 months ago) by brian
Branch: MAIN
Changes since 1.5: +2 -4 lines
Diff to previous 1.5 (colored)

Cosmetic: Test for comment lines after the lenght has been established.
Pointed out by: Theo de Raadt <deraadt@cvs.openbsd.org>

Revision 1.5 / (download) - annotate - [select for diffs], Sun Dec 21 02:11:29 1997 UTC (26 years, 5 months ago) by brian
Branch: MAIN
Changes since 1.4: +3 -1 lines
Diff to previous 1.4 (colored)

Index: systems.c
===================================================================
RCS file: /home/ncvs/src/usr.sbin/ppp/systems.c,v
retrieving revision 1.31
diff -u -r1.31 systems.c
--- systems.c	1997/12/17 21:22:01	1.31
+++ systems.c	1997/12/21 01:35:58
@@ -288,6 +288,8 @@
           if (issep(*cp)) {
 	    n = strspn(cp, " \t");
 	    cp += n;
+	    if (*cp == '#')
+	      continue;
             len = strlen(cp);
             if (!len)
               continue;

Revision 1.4 / (download) - annotate - [select for diffs], Wed Dec 17 21:18:07 1997 UTC (26 years, 5 months ago) by brian
Branch: MAIN
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored)

char filename[200] => char filename[MAXPATHLEN]

Pointed out by: Theo de Raadt <deraadt@cvs.openbsd.org>

Revision 1.3 / (download) - annotate - [select for diffs], Wed Dec 17 21:17:48 1997 UTC (26 years, 5 months ago) by brian
Branch: MAIN
Changes since 1.2: +3 -3 lines
Diff to previous 1.2 (colored)

o Log ******** instead of the actual password for "set authkey"
  when command logging is switched on.
o Display ******** for the authkey for "show auth"
o Document how \P should be used, and document the other chat escapes
  while I'm there.
o Make sure the full command is displayed when a compound command
  fails - ie, "set novar rubbish" should say "set novar: Invalid command"
  rather than "novar: Invalid command"

Problem pointed out by: Theo de Raadt <deraadt@cvs.openbsd.org> (among others)

Revision 1.2 / (download) - annotate - [select for diffs], Mon Dec 15 22:50:21 1997 UTC (26 years, 5 months ago) by brian
Branch: MAIN
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored)

Use LogWARN for command usage messages and unrecognised
commands, not LogCOMMAND.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Nov 23 20:27:36 1997 UTC (26 years, 6 months ago) by brian
Branch: BRIAN
CVS Tags: PPP1_5
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Import version 1.5 of ppp.

<sales>
This is a user-level ppp implementation that uses the
tun driver.  It was originally created by a Japanese
ISP.  It's now piled with features.  Check the man pages
for details.
</sales>

The sources are identical to the ones in FreeBSD, except
for the Makefile.

IP aliasing (NAT) is disabled, and can be enabled by simply
doing a ``make install'' of libalias, then rebuilding
ppp.  I'll create libalias as a port soon.

Revision 1.1 / (download) - annotate - [select for diffs], Sun Nov 23 20:27:36 1997 UTC (26 years, 6 months ago) by brian
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.