67b072f732
that ppp stays in the foreground. o Add the -quiet switch to quieten ppps startup o Add the -nat flag and discourage the use of the -alias flag. Both do the same thing. o Correct some nat usage strings. o Change the internal ``alias'' command to ``nat''.
16 lines
451 B
C
16 lines
451 B
C
/*-
|
|
* The code in this file was written by Eivind Eklund <perhaps@yes.no>,
|
|
* who places it in the public domain without restriction.
|
|
*
|
|
* $Id: alias_cmd.h,v 1.11 1999/05/08 11:06:01 brian Exp $
|
|
*/
|
|
|
|
struct cmdargs;
|
|
|
|
extern int nat_RedirectPort(struct cmdargs const *);
|
|
extern int nat_RedirectAddr(struct cmdargs const *);
|
|
extern int nat_ProxyRule(struct cmdargs const *);
|
|
extern int nat_Pptp(struct cmdargs const *);
|
|
|
|
extern struct layer natlayer;
|