summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/nat_cmd.c
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1997-10-26 01:04:02 +0000
committerbrian <brian@FreeBSD.org>1997-10-26 01:04:02 +0000
commit486b8925ecb0d408e403474828e20c1cce8aaec8 (patch)
treecca66974908224bf517868aaafb2e4acd1abe88d /usr.sbin/ppp/nat_cmd.c
parent1d2927c9fac7bcfe68bf6ab502c716adc91d6f09 (diff)
downloadFreeBSD-src-486b8925ecb0d408e403474828e20c1cce8aaec8.zip
FreeBSD-src-486b8925ecb0d408e403474828e20c1cce8aaec8.tar.gz
Cosmetic (no functional changes):
o Add missing $Id$s o Move extern decls from .c -> .h files o Staticize o Remove #includes from .h files o style(9)ify includes o bcopy -> memcpy bzero -> memset bcmp -> memcmp index -> strchr rindex -> strrchr o Move timeout.h -> timer.h (making it consistent w/ timer.c) o Add -Wmissing-prototypes
Diffstat (limited to 'usr.sbin/ppp/nat_cmd.c')
-rw-r--r--usr.sbin/ppp/nat_cmd.c51
1 files changed, 21 insertions, 30 deletions
diff --git a/usr.sbin/ppp/nat_cmd.c b/usr.sbin/ppp/nat_cmd.c
index 575a01c..4b91898 100644
--- a/usr.sbin/ppp/nat_cmd.c
+++ b/usr.sbin/ppp/nat_cmd.c
@@ -1,34 +1,34 @@
-#include <limits.h>
-#include <netdb.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
+/*
+ * $Id: $
+ */
-#include <sys/types.h>
+#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
+#include <netdb.h>
+#include <limits.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "mbuf.h"
+#include "log.h"
#include "defs.h"
#include "command.h"
#include "loadalias.h"
#include "vars.h"
+#include "alias_cmd.h"
-static int
- StrToAddr(char *, struct in_addr * addr);
-static int
- StrToPort(char *, u_short * port, char *proto);
-
-static int
- StrToAddrAndPort(char *, struct in_addr * addr, u_short * port, char *proto);
+static int StrToAddr(char *, struct in_addr *);
+static int StrToPort(char *, u_short *, char *);
+static int StrToAddrAndPort(char *, struct in_addr *, u_short *, char *);
int
-AliasRedirectPort(struct cmdtab * list,
- int argc,
- char **argv,
- void *param)
+AliasRedirectPort(struct cmdtab *list, int argc, char **argv, void *param)
{
if (!(mode & MODE_ALIAS)) {
if (VarTerm)
@@ -91,10 +91,7 @@ AliasRedirectPort(struct cmdtab * list,
int
-AliasRedirectAddr(struct cmdtab * list,
- int argc,
- char **argv,
- void *param)
+AliasRedirectAddr(struct cmdtab *list, int argc, char **argv, void *param)
{
if (!(mode & MODE_ALIAS)) {
if (VarTerm)
@@ -132,8 +129,7 @@ AliasRedirectAddr(struct cmdtab * list,
static int
-StrToAddr(char *str,
- struct in_addr * addr)
+StrToAddr(char *str, struct in_addr *addr)
{
struct hostent *hp;
@@ -151,9 +147,7 @@ StrToAddr(char *str,
static int
-StrToPort(char *str,
- u_short * port,
- char *proto)
+StrToPort(char *str, u_short *port, char *proto)
{
int iport;
struct servent *sp;
@@ -176,10 +170,7 @@ StrToPort(char *str,
int
-StrToAddrAndPort(char *str,
- struct in_addr * addr,
- u_short * port,
- char *proto)
+StrToAddrAndPort(char *str, struct in_addr *addr, u_short *port, char *proto)
{
char *ptr;
OpenPOWER on IntegriCloud