diff options
| author | Brian Somers <brian@FreeBSD.org> | 1999-03-24 20:28:58 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1999-03-24 20:28:58 +0000 |
| commit | 942759e7565eb948bf4b80f6bb4aadd7f72d2c69 (patch) | |
| tree | 8eddc49532512ec9a2be0ea9a690e2074440d86a | |
| parent | 222b8f6a919eb1c9ddf5e93e58156a2ea57d63d4 (diff) | |
Notes
| -rw-r--r-- | lib/libalias/alias.h | 4 | ||||
| -rw-r--r-- | lib/libalias/alias_local.h | 2 | ||||
| -rw-r--r-- | lib/libalias/alias_proxy.c | 2 | ||||
| -rw-r--r-- | sys/netinet/libalias/alias.h | 4 | ||||
| -rw-r--r-- | sys/netinet/libalias/alias_local.h | 2 | ||||
| -rw-r--r-- | sys/netinet/libalias/alias_proxy.c | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/lib/libalias/alias.h b/lib/libalias/alias.h index 14325f4aa2e9..d3c2fd45c474 100644 --- a/lib/libalias/alias.h +++ b/lib/libalias/alias.h @@ -7,7 +7,7 @@ This software is placed into the public domain with no restrictions on its distribution. - $Id: alias.h,v 1.8 1998/04/19 21:42:05 brian Exp $ + $Id: alias.h,v 1.9 1999/02/27 02:16:01 brian Exp $ */ @@ -88,7 +88,7 @@ struct alias_link; /* Transparent Proxying */ extern int - PacketAliasProxyRule(char *); + PacketAliasProxyRule(const char *); /********************** Mode flags ********************/ diff --git a/lib/libalias/alias_local.h b/lib/libalias/alias_local.h index da451259cdf0..23b04a832850 100644 --- a/lib/libalias/alias_local.h +++ b/lib/libalias/alias_local.h @@ -144,7 +144,7 @@ void HouseKeeping(void); void AliasHandleFtpOut(struct ip *, struct alias_link *, int); /* IRC routines */ -void AliasHandleIrcOut(struct ip *pip, struct alias_link *link, int maxsize ); +void AliasHandleIrcOut(struct ip *, struct alias_link *, int); /* NetBIOS routines */ int AliasHandleUdpNbt(struct ip *, struct alias_link *, struct in_addr *, u_short); diff --git a/lib/libalias/alias_proxy.c b/lib/libalias/alias_proxy.c index 41f016cd62b8..60437bfafd21 100644 --- a/lib/libalias/alias_proxy.c +++ b/lib/libalias/alias_proxy.c @@ -487,7 +487,7 @@ ProxyModify(struct alias_link *link, */ int -PacketAliasProxyRule(char *cmd) +PacketAliasProxyRule(const char *cmd) { /* * This function takes command strings of the form: diff --git a/sys/netinet/libalias/alias.h b/sys/netinet/libalias/alias.h index 14325f4aa2e9..d3c2fd45c474 100644 --- a/sys/netinet/libalias/alias.h +++ b/sys/netinet/libalias/alias.h @@ -7,7 +7,7 @@ This software is placed into the public domain with no restrictions on its distribution. - $Id: alias.h,v 1.8 1998/04/19 21:42:05 brian Exp $ + $Id: alias.h,v 1.9 1999/02/27 02:16:01 brian Exp $ */ @@ -88,7 +88,7 @@ struct alias_link; /* Transparent Proxying */ extern int - PacketAliasProxyRule(char *); + PacketAliasProxyRule(const char *); /********************** Mode flags ********************/ diff --git a/sys/netinet/libalias/alias_local.h b/sys/netinet/libalias/alias_local.h index da451259cdf0..23b04a832850 100644 --- a/sys/netinet/libalias/alias_local.h +++ b/sys/netinet/libalias/alias_local.h @@ -144,7 +144,7 @@ void HouseKeeping(void); void AliasHandleFtpOut(struct ip *, struct alias_link *, int); /* IRC routines */ -void AliasHandleIrcOut(struct ip *pip, struct alias_link *link, int maxsize ); +void AliasHandleIrcOut(struct ip *, struct alias_link *, int); /* NetBIOS routines */ int AliasHandleUdpNbt(struct ip *, struct alias_link *, struct in_addr *, u_short); diff --git a/sys/netinet/libalias/alias_proxy.c b/sys/netinet/libalias/alias_proxy.c index 41f016cd62b8..60437bfafd21 100644 --- a/sys/netinet/libalias/alias_proxy.c +++ b/sys/netinet/libalias/alias_proxy.c @@ -487,7 +487,7 @@ ProxyModify(struct alias_link *link, */ int -PacketAliasProxyRule(char *cmd) +PacketAliasProxyRule(const char *cmd) { /* * This function takes command strings of the form: |
