diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-19 02:42:37 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-19 02:42:37 +0000 |
commit | 95f1ea79f0211d4781503037d88c6bf35662def4 (patch) | |
tree | 31d0ee30b9cd50dada5932885d8073040af674c7 /net/pim6sd | |
parent | bdaf558d2d6efd6767641eea81fa4a1a688d41a2 (diff) | |
download | ports-95f1ea79f0211d4781503037d88c6bf35662def4.tar.gz ports-95f1ea79f0211d4781503037d88c6bf35662def4.zip |
Notes
Diffstat (limited to 'net/pim6sd')
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::cfparse.y | 10 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::config.c | 10 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::mld6.c | 11 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::mld6_proto.c (renamed from net/pim6sd/files/patch-ae) | 17 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::mld6v2.h (renamed from net/pim6sd/files/patch-ad) | 0 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::mrt.c | 10 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::pim6_proto.c | 10 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::route.c | 10 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::rp.c | 10 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::trace.c | 10 | ||||
-rw-r--r-- | net/pim6sd/files/patch-pim6sd::vif.c | 10 |
11 files changed, 104 insertions, 4 deletions
diff --git a/net/pim6sd/files/patch-pim6sd::cfparse.y b/net/pim6sd/files/patch-pim6sd::cfparse.y new file mode 100644 index 000000000000..20383183832e --- /dev/null +++ b/net/pim6sd/files/patch-pim6sd::cfparse.y @@ -0,0 +1,10 @@ +--- pim6sd/cfparse.y.orig Tue Nov 19 03:27:18 2002 ++++ pim6sd/cfparse.y Tue Nov 19 03:27:33 2002 +@@ -31,6 +31,7 @@ + %{ + #include <sys/types.h> + #include <sys/socket.h> ++#include <sys/param.h> + #include <net/if.h> + #include <net/route.h> + #include <netinet/in.h> diff --git a/net/pim6sd/files/patch-pim6sd::config.c b/net/pim6sd/files/patch-pim6sd::config.c new file mode 100644 index 000000000000..8d7bd5c81b27 --- /dev/null +++ b/net/pim6sd/files/patch-pim6sd::config.c @@ -0,0 +1,10 @@ +--- pim6sd/config.c Tue Nov 19 03:16:55 2002 ++++ pim6sd/config.c Tue Nov 19 03:15:44 2002 +@@ -66,6 +66,7 @@ + #endif + #include <net/route.h> + #include <netinet/in.h> ++#include <sys/param.h> + #include <netinet6/ip6_mroute.h> + #include <netinet6/in6_var.h> + #include <arpa/inet.h> diff --git a/net/pim6sd/files/patch-pim6sd::mld6.c b/net/pim6sd/files/patch-pim6sd::mld6.c new file mode 100644 index 000000000000..a8ec4d3e2386 --- /dev/null +++ b/net/pim6sd/files/patch-pim6sd::mld6.c @@ -0,0 +1,11 @@ +--- pim6sd/mld6.c Tue Nov 19 03:13:59 2002 ++++ pim6sd/mld6.c Tue Nov 19 03:13:46 2002 +@@ -117,7 +117,7 @@ + + /* Externals */ + +-extern struct in6_addr in6addr_linklocal_allnodes; ++//extern struct in6_addr in6addr_linklocal_allnodes; + + /* local variables. */ + static struct sockaddr_in6 dst = {sizeof(dst), AF_INET6}; diff --git a/net/pim6sd/files/patch-ae b/net/pim6sd/files/patch-pim6sd::mld6_proto.c index fc279a472aec..37c9eac3caac 100644 --- a/net/pim6sd/files/patch-ae +++ b/net/pim6sd/files/patch-pim6sd::mld6_proto.c @@ -1,5 +1,14 @@ ---- pim6sd/mld6_proto.c Wed Oct 30 17:53:17 2002 -+++ pim6sd/mld6_proto.c Sun Nov 17 00:39:36 2002 +--- pim6sd/mld6_proto.c Tue Nov 19 03:15:12 2002 ++++ pim6sd/mld6_proto.c Wed Oct 30 09:53:17 2002 +@@ -120,7 +120,7 @@ + + #include "mld6_proto.h" + +-extern struct in6_addr in6addr_any; ++//extern struct in6_addr in6addr_any; + + + /* @@ -316,12 +316,14 @@ inet6_fmt(group), v->uv_name); return; @@ -15,7 +24,7 @@ IF_DEBUG(DEBUG_MLD) log(LOG_DEBUG, 0, -@@ -517,6 +519,7 @@ +@@ -519,6 +517,7 @@ v->uv_ifindex, MLD6_LAST_LISTENER_QUERY_INTERVAL, 0, 1); break; @@ -23,7 +32,7 @@ case MLDv2: default: send_mld6v2(MLD_LISTENER_QUERY, 0, -@@ -526,6 +529,7 @@ +@@ -529,6 +526,7 @@ MLD6_QUERY_RESPONSE_INTERVAL, 0, TRUE, SFLAGNO, v->uv_mld_robustness, v->uv_mld_query_interval); diff --git a/net/pim6sd/files/patch-ad b/net/pim6sd/files/patch-pim6sd::mld6v2.h index 9d959db5cc68..9d959db5cc68 100644 --- a/net/pim6sd/files/patch-ad +++ b/net/pim6sd/files/patch-pim6sd::mld6v2.h diff --git a/net/pim6sd/files/patch-pim6sd::mrt.c b/net/pim6sd/files/patch-pim6sd::mrt.c new file mode 100644 index 000000000000..2efa3456e363 --- /dev/null +++ b/net/pim6sd/files/patch-pim6sd::mrt.c @@ -0,0 +1,10 @@ +--- pim6sd/mrt.c Tue Nov 19 03:18:42 2002 ++++ pim6sd/mrt.c Tue Nov 19 03:18:26 2002 +@@ -48,6 +48,7 @@ + + #include <sys/types.h> + #include <sys/socket.h> ++#include <sys/param.h> + #include <net/if.h> + #include <net/route.h> + #include <netinet/in.h> diff --git a/net/pim6sd/files/patch-pim6sd::pim6_proto.c b/net/pim6sd/files/patch-pim6sd::pim6_proto.c new file mode 100644 index 000000000000..e0d8e8e8f1df --- /dev/null +++ b/net/pim6sd/files/patch-pim6sd::pim6_proto.c @@ -0,0 +1,10 @@ +--- pim6sd/pim6_proto.c Tue Nov 19 03:19:39 2002 ++++ pim6sd/pim6_proto.c Tue Nov 19 03:19:11 2002 +@@ -103,6 +103,7 @@ + */ + + #include <sys/types.h> ++#include <sys/param.h> + #include <sys/socket.h> + #include <net/if.h> + #include <net/route.h> diff --git a/net/pim6sd/files/patch-pim6sd::route.c b/net/pim6sd/files/patch-pim6sd::route.c new file mode 100644 index 000000000000..d5fe4be28f3e --- /dev/null +++ b/net/pim6sd/files/patch-pim6sd::route.c @@ -0,0 +1,10 @@ +--- pim6sd/route.c Tue Nov 19 03:17:26 2002 ++++ pim6sd/route.c Tue Nov 19 03:17:09 2002 +@@ -48,6 +48,7 @@ + + #include <sys/types.h> + #include <sys/socket.h> ++#include <sys/param.h> + #include <net/if.h> + #include <net/route.h> + #include <netinet/in.h> diff --git a/net/pim6sd/files/patch-pim6sd::rp.c b/net/pim6sd/files/patch-pim6sd::rp.c new file mode 100644 index 000000000000..4c9542d0ce54 --- /dev/null +++ b/net/pim6sd/files/patch-pim6sd::rp.c @@ -0,0 +1,10 @@ +--- pim6sd/rp.c Tue Nov 19 03:20:02 2002 ++++ pim6sd/rp.c Tue Nov 19 03:19:50 2002 +@@ -76,6 +76,7 @@ + + #include <sys/types.h> + #include <sys/socket.h> ++#include <sys/param.h> + #include <net/if.h> + #include <net/route.h> + #include <netinet/in.h> diff --git a/net/pim6sd/files/patch-pim6sd::trace.c b/net/pim6sd/files/patch-pim6sd::trace.c new file mode 100644 index 000000000000..4d9c8f60de26 --- /dev/null +++ b/net/pim6sd/files/patch-pim6sd::trace.c @@ -0,0 +1,10 @@ +--- pim7sd/trace.c Tue Nov 19 03:20:24 2002 ++++ pim6sd/trace.c Tue Nov 19 03:20:12 2002 +@@ -69,6 +69,7 @@ + + #include <sys/types.h> + #include <sys/socket.h> ++#include <sys/param.h> + #include <sys/ioctl.h> + #include <sys/uio.h> + #include <sys/queue.h> diff --git a/net/pim6sd/files/patch-pim6sd::vif.c b/net/pim6sd/files/patch-pim6sd::vif.c new file mode 100644 index 000000000000..9b2320c54fc0 --- /dev/null +++ b/net/pim6sd/files/patch-pim6sd::vif.c @@ -0,0 +1,10 @@ +--- pim6sd/vif.c Tue Nov 19 03:18:11 2002 ++++ pim6sd/vif.c Tue Nov 19 03:17:44 2002 +@@ -58,6 +58,7 @@ + #include <sys/types.h> + #include <sys/ioctl.h> + #include <sys/socket.h> ++#include <sys/param.h> + #include <net/if.h> + #include <net/route.h> + #include <netinet/in.h> |