mcast-tools-cvs Mailing List for mcast-tools
Brought to you by:
suzsuz
You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(70) |
Oct
(8) |
Nov
|
Dec
(5) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
(9) |
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
(2) |
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
(7) |
May
(29) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
|
From: 山. <hy...@gm...> - 2008-12-11 09:08:05
|
Hi, I have just tried mcastread with source specific multicast on FreeBSD 7.1-PRERELEASE, but can't work well. It output "can't allocate socket". I wonder if FreeBSD SSM implementation is not completed or I missed some important configuration? If someone succeeded in receiving source specific multicast packet by mcast-tools on FreeBSD, let me know how to do. Thanks in advance. Best regards, Hideki Yamamoto |
|
From: <su...@ka...> - 2008-05-05 13:03:27
|
Update of /cvsroot/mcast-tools/mcast-tools/pim6dd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11880/pim6dd Modified Files: routesock.c Log Message: fixed a compilation failure on linux, and stop supporting OSes without routing-socket or netlink. Index: routesock.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pim6dd/routesock.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** routesock.c 19 Aug 2005 00:50:42 -0000 1.1.1.1 --- routesock.c 5 May 2008 13:03:20 -0000 1.2 *************** *** 332,362 **** return(TRUE); } - - - #else /* HAVE_ROUTING_SOCKETS */ - - - /* - * Return in rpfcinfo the incoming interface and the next hop router - * toward source. - */ - /* TODO: check whether next hop router address is in network or host order */ - int - k_req_incoming(source, rpfcinfo) - struct sockaddr_in6 *source; - struct rpfctl *rpfcinfo; - { - rpfcinfo->source = *source; - rpfcinfo->iif = NO_VIF; /* just initialized, will be */ - /* changed in kernel */ - memset(&rpfcinfo->rpfneighbor, 0, sizeof(rpfcinfo->rpfneighbor)); /* initialized */ - - if (ioctl(udp_socket, SIOCGETRPF, (char *) rpfcinfo) < 0){ - log_msg(LOG_ERR, errno, "ioctl SIOCGETRPF k_req_incoming"); - return(FALSE); - } - return (TRUE); - } - #endif /* HAVE_ROUTING_SOCKETS */ --- 332,335 ---- |
|
From: <su...@ka...> - 2008-05-05 13:03:27
|
Update of /cvsroot/mcast-tools/mcast-tools In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11880 Modified Files: ChangeLog Log Message: fixed a compilation failure on linux, and stop supporting OSes without routing-socket or netlink. Index: ChangeLog =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/ChangeLog,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** ChangeLog 5 May 2008 12:30:12 -0000 1.33 --- ChangeLog 5 May 2008 13:03:18 -0000 1.34 *************** *** 7,10 **** --- 7,14 ---- an ifa with ifa->ifa_addr=NULL for pim6reg interface) (contributed by USAGI Project) + - {pim6dd,pim6sd}/routesock.c + fixed a compilation failure on linux, and stop supporting OSes + without routing-socket or netlink. + (suggested by USAGI Project) May 1 2008 su...@ka... |
|
From: <su...@ka...> - 2008-05-05 13:03:26
|
Update of /cvsroot/mcast-tools/mcast-tools/pim6sd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11880/pim6sd Modified Files: routesock.c Log Message: fixed a compilation failure on linux, and stop supporting OSes without routing-socket or netlink. Index: routesock.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pim6sd/routesock.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** routesock.c 1 May 2008 03:03:39 -0000 1.5 --- routesock.c 5 May 2008 13:03:20 -0000 1.6 *************** *** 445,476 **** return (TRUE); } - - - #else /* HAVE_ROUTING_SOCKETS */ - - - /* - * Return in rpfcinfo the incoming interface and the next hop router toward - * source. - */ - /* TODO: check whether next hop router address is in network or host order */ - int - k_req_incoming(source, rpfcinfo) - struct sockaddr_in6 *source; - struct rpfctl *rpfcinfo; - { - rpfcinfo->source = *source; - rpfcinfo->iif = NO_VIF; /* just initialized, will be */ - /* changed in kernel */ - memset(&rpfcinfo->rpfneighbor, 0, sizeof(rpfcinfo->rpfneighbor)); /* initialized */ - - if (ioctl(udp_socket, SIOCGETRPF, (char *) rpfcinfo) < 0) - { - log_msg(LOG_ERR, errno, "ioctl SIOCGETRPF k_req_incoming"); - return (FALSE); - } - return (TRUE); - } - #endif /* HAVE_ROUTING_SOCKETS */ --- 445,448 ---- |
|
From: <su...@ka...> - 2008-05-05 12:31:04
|
Update of /cvsroot/mcast-tools/mcast-tools/pim6sd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17680/pim6sd Modified Files: config.c Log Message: prevent a NULL pointer access in Linux. (getifaddrs() returns an ifa with ifa->ifa_addr=NULL for pim6reg interface) (contributed by USAGI Project) Index: config.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pim6sd/config.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** config.c 1 May 2008 03:03:38 -0000 1.6 --- config.c 5 May 2008 12:30:25 -0000 1.7 *************** *** 128,132 **** * Ignore any interface for an address family other than IPv6. */ ! if (ifa->ifa_addr->sa_family != AF_INET6) { /* Eventually may have IPv6 address later */ total_interfaces++; --- 128,133 ---- * Ignore any interface for an address family other than IPv6. */ ! if (ifa->ifa_addr == NULL || ! ifa->ifa_addr->sa_family != AF_INET6) { /* Eventually may have IPv6 address later */ total_interfaces++; |
|
From: <su...@ka...> - 2008-05-05 12:31:04
|
Update of /cvsroot/mcast-tools/mcast-tools/pim6dd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17680/pim6dd Modified Files: config.c Log Message: prevent a NULL pointer access in Linux. (getifaddrs() returns an ifa with ifa->ifa_addr=NULL for pim6reg interface) (contributed by USAGI Project) Index: config.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pim6dd/config.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config.c 10 Sep 2005 08:25:02 -0000 1.2 --- config.c 5 May 2008 12:30:22 -0000 1.3 *************** *** 85,89 **** * Ignore any interface for an address family other than IPv6. */ ! if (ifa->ifa_addr->sa_family != AF_INET6) { total_interfaces++; /* Eventually may have IPv6 address later */ continue; --- 85,90 ---- * Ignore any interface for an address family other than IPv6. */ ! if (ifa->ifa_addr == NULL || ! ifa->ifa_addr->sa_family != AF_INET6) { total_interfaces++; /* Eventually may have IPv6 address later */ continue; |
|
From: <su...@ka...> - 2008-05-05 12:30:59
|
Update of /cvsroot/mcast-tools/mcast-tools/mtrace6 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17680/mtrace6 Modified Files: mtrace6.c Log Message: prevent a NULL pointer access in Linux. (getifaddrs() returns an ifa with ifa->ifa_addr=NULL for pim6reg interface) (contributed by USAGI Project) Index: mtrace6.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/mtrace6/mtrace6.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mtrace6.c 1 May 2008 06:23:04 -0000 1.9 --- mtrace6.c 5 May 2008 12:30:19 -0000 1.10 *************** *** 505,509 **** for (ifa = ifap; ifa; ifa = ifa->ifa_next) { ! if (ifa->ifa_addr->sa_family != family) continue; if (get_sa_len(ifa->ifa_addr) > l) --- 505,510 ---- for (ifa = ifap; ifa; ifa = ifa->ifa_next) { ! if (ifa->ifa_addr == NULL || ! ifa->ifa_addr->sa_family != family) continue; if (get_sa_len(ifa->ifa_addr) > l) |
|
From: <su...@ka...> - 2008-05-05 12:30:57
|
Update of /cvsroot/mcast-tools/mcast-tools/mcastsend In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17680/mcastsend Modified Files: mcastsend.c Log Message: prevent a NULL pointer access in Linux. (getifaddrs() returns an ifa with ifa->ifa_addr=NULL for pim6reg interface) (contributed by USAGI Project) Index: mcastsend.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/mcastsend/mcastsend.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mcastsend.c 16 Sep 2005 01:32:46 -0000 1.3 --- mcastsend.c 5 May 2008 12:30:17 -0000 1.4 *************** *** 216,219 **** --- 216,221 ---- if (strcmp(ifa->ifa_name, ifname) != 0) continue; + if (ifa->ifa_addr == NULL) + continue; if (res->ai_family != ifa->ifa_addr->sa_family) continue; |
|
From: <su...@ka...> - 2008-05-05 12:30:56
|
Update of /cvsroot/mcast-tools/mcast-tools In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17680 Modified Files: ChangeLog Log Message: prevent a NULL pointer access in Linux. (getifaddrs() returns an ifa with ifa->ifa_addr=NULL for pim6reg interface) (contributed by USAGI Project) Index: ChangeLog =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/ChangeLog,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** ChangeLog 5 May 2008 11:49:53 -0000 1.32 --- ChangeLog 5 May 2008 12:30:12 -0000 1.33 *************** *** 3,6 **** --- 3,10 ---- assign sin6_scope-id on linux as well as in KAME (contributed by USAGI Project) + - pim6sd/config.c, pim6dd/config.c, mcastsend/mcastsend.c, mtrace6/mtrace6.c + prevent a NULL pointer access in Linux. (getifaddrs() returns + an ifa with ifa->ifa_addr=NULL for pim6reg interface) + (contributed by USAGI Project) May 1 2008 su...@ka... |
|
From: <su...@ka...> - 2008-05-05 11:50:42
|
Update of /cvsroot/mcast-tools/mcast-tools In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3690 Modified Files: ChangeLog Log Message: assign sin6_scope-id on linux as well as in KAME (contributed by USAGI Project) Index: ChangeLog =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/ChangeLog,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** ChangeLog 5 May 2008 11:39:33 -0000 1.31 --- ChangeLog 5 May 2008 11:49:53 -0000 1.32 *************** *** 1,5 **** May 5 2008 su...@ka... ! - pim6dd/mld6.c, pim6sd/mld6.c: assign sin6_scope-id on linux as well as in KAME ! (contributed by USAGI Project) May 1 2008 su...@ka... --- 1,6 ---- May 5 2008 su...@ka... ! - {pim6dd,pim6sd}/{mld6.c, netlink.c}: ! assign sin6_scope-id on linux as well as in KAME ! (contributed by USAGI Project) May 1 2008 su...@ka... |
|
From: <su...@ka...> - 2008-05-05 11:50:42
|
Update of /cvsroot/mcast-tools/mcast-tools/pim6sd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3690/pim6sd Modified Files: netlink.c Log Message: assign sin6_scope-id on linux as well as in KAME (contributed by USAGI Project) Index: netlink.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pim6sd/netlink.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** netlink.c 1 May 2008 03:03:38 -0000 1.3 --- netlink.c 5 May 2008 11:49:55 -0000 1.4 *************** *** 236,239 **** --- 236,240 ---- init_sin6(&rpf->rpfneighbor); rpf->rpfneighbor.sin6_addr = gw; + rpf->rpfneighbor.sin6_scope_id = v->uv_ifindex; } else rpf->rpfneighbor = rpf->source; |
|
From: <su...@ka...> - 2008-05-05 11:50:11
|
Update of /cvsroot/mcast-tools/mcast-tools/pim6dd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3690/pim6dd Modified Files: netlink.c Log Message: assign sin6_scope-id on linux as well as in KAME (contributed by USAGI Project) Index: netlink.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pim6dd/netlink.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** netlink.c 21 Sep 2005 11:33:52 -0000 1.1 --- netlink.c 5 May 2008 11:49:56 -0000 1.2 *************** *** 232,235 **** --- 232,236 ---- init_sin6(&rpf->rpfneighbor); rpf->rpfneighbor.sin6_addr = gw; + rpf->rpfneighbor.sin6_scope_id = v->uv_ifindex; } else rpf->rpfneighbor = rpf->source; |
|
From: <su...@ka...> - 2008-05-05 11:39:41
|
Update of /cvsroot/mcast-tools/mcast-tools/pim6dd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23716/pim6dd Modified Files: mld6.c Log Message: assign sin6_scope-id on linux as well as in KAME (contributed by USAGI Project) Index: mld6.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pim6dd/mld6.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mld6.c 21 Sep 2005 11:41:14 -0000 1.4 --- mld6.c 5 May 2008 11:39:35 -0000 1.5 *************** *** 524,528 **** dstp = (struct sockaddr_in6 *)sndmh.msg_name; ! #ifdef __KAME__ if (IN6_IS_ADDR_LINKLOCAL(&dstp->sin6_addr) || IN6_IS_ADDR_MC_LINKLOCAL(&dstp->sin6_addr)) --- 524,528 ---- dstp = (struct sockaddr_in6 *)sndmh.msg_name; ! #if defined(__KAME__) || defined(__linux__) if (IN6_IS_ADDR_LINKLOCAL(&dstp->sin6_addr) || IN6_IS_ADDR_MC_LINKLOCAL(&dstp->sin6_addr)) |
|
From: <su...@ka...> - 2008-05-05 11:39:41
|
Update of /cvsroot/mcast-tools/mcast-tools In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23716 Modified Files: ChangeLog Log Message: assign sin6_scope-id on linux as well as in KAME (contributed by USAGI Project) Index: ChangeLog =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/ChangeLog,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** ChangeLog 1 May 2008 06:23:03 -0000 1.30 --- ChangeLog 5 May 2008 11:39:33 -0000 1.31 *************** *** 1,2 **** --- 1,6 ---- + May 5 2008 su...@ka... + - pim6dd/mld6.c, pim6sd/mld6.c: assign sin6_scope-id on linux as well as in KAME + (contributed by USAGI Project) + May 1 2008 su...@ka... - include/linux/*, configure, configure.in, include/config.h.in, |
|
From: <su...@ka...> - 2008-05-05 11:39:41
|
Update of /cvsroot/mcast-tools/mcast-tools/pim6sd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23716/pim6sd Modified Files: mld6.c Log Message: assign sin6_scope-id on linux as well as in KAME (contributed by USAGI Project) Index: mld6.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pim6sd/mld6.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mld6.c 1 May 2008 03:03:38 -0000 1.9 --- mld6.c 5 May 2008 11:39:34 -0000 1.10 *************** *** 606,610 **** dstp = (struct sockaddr_in6 *)sndmh.msg_name; ! #ifdef __KAME__ if (IN6_IS_ADDR_LINKLOCAL(&dstp->sin6_addr) || IN6_IS_ADDR_MC_LINKLOCAL(&dstp->sin6_addr)) --- 606,610 ---- dstp = (struct sockaddr_in6 *)sndmh.msg_name; ! #if defined(__KAME__) || defined(__linux__) if (IN6_IS_ADDR_LINKLOCAL(&dstp->sin6_addr) || IN6_IS_ADDR_MC_LINKLOCAL(&dstp->sin6_addr)) |
|
From: <su...@ka...> - 2008-05-01 06:23:40
|
Update of /cvsroot/mcast-tools/mcast-tools/mtrace6 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29975/mtrace6 Modified Files: mtrace6.c Log Message: removed a compilation warning. Index: mtrace6.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/mtrace6/mtrace6.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** mtrace6.c 7 Apr 2008 12:13:57 -0000 1.8 --- mtrace6.c 1 May 2008 06:23:04 -0000 1.9 *************** *** 454,462 **** struct sockaddr_in6 *addr; { - int s; #ifdef SIOCGIFAFLAG_IN6 struct in6_ifreq ifr6; - #endif u_int32_t flags6; /* we need a global address only...XXX: should be flexible? */ --- 454,462 ---- struct sockaddr_in6 *addr; { #ifdef SIOCGIFAFLAG_IN6 + int s; struct in6_ifreq ifr6; u_int32_t flags6; + #endif /* we need a global address only...XXX: should be flexible? */ |
|
From: <su...@ka...> - 2008-05-01 06:23:39
|
Update of /cvsroot/mcast-tools/mcast-tools In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29975 Modified Files: ChangeLog Log Message: removed a compilation warning. Index: ChangeLog =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/ChangeLog,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** ChangeLog 1 May 2008 06:13:02 -0000 1.29 --- ChangeLog 1 May 2008 06:23:03 -0000 1.30 *************** *** 8,12 **** IPv6-multicast-aware linux kernel is available from USAGI Project or the latest 2.6 snapshot. (contributed by USAGI Project) ! - pmsft/pmsft.c: removed a compilation warning. Apr 7 2008 su...@ka... --- 8,12 ---- IPv6-multicast-aware linux kernel is available from USAGI Project or the latest 2.6 snapshot. (contributed by USAGI Project) ! - pmsft/pmsft.c, mtrace6/mtrace6.c: removed a compilation warning. Apr 7 2008 su...@ka... |
|
From: <su...@ka...> - 2008-05-01 06:13:45
|
Update of /cvsroot/mcast-tools/mcast-tools/pmsft In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16262/pmsft Modified Files: pmsft.c Log Message: removed a compilation warning. Index: pmsft.c =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pmsft/pmsft.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** pmsft.c 24 Jun 2006 08:53:47 -0000 1.3 --- pmsft.c 1 May 2008 06:13:07 -0000 1.4 *************** *** 102,107 **** struct addrinfo hints, *res, *res0; int error; ! char str1[NI_MAXHOST], str2[NI_MAXHOST], *line, ifname[IFNAMSIZ]; ! int i, n, opt, level; /* Skip whitespaces */ --- 102,111 ---- struct addrinfo hints, *res, *res0; int error; ! char str1[NI_MAXHOST], *line, ifname[IFNAMSIZ]; ! int i, n, opt; ! #ifdef HAVE_MLDV2HOST ! int level; ! char str2[NI_MAXHOST] ! #endif /* Skip whitespaces */ |
|
From: <su...@ka...> - 2008-05-01 06:13:42
|
Update of /cvsroot/mcast-tools/mcast-tools In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16262 Modified Files: ChangeLog Log Message: removed a compilation warning. Index: ChangeLog =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/ChangeLog,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** ChangeLog 1 May 2008 03:03:36 -0000 1.28 --- ChangeLog 1 May 2008 06:13:02 -0000 1.29 *************** *** 8,11 **** --- 8,12 ---- IPv6-multicast-aware linux kernel is available from USAGI Project or the latest 2.6 snapshot. (contributed by USAGI Project) + - pmsft/pmsft.c: removed a compilation warning. Apr 7 2008 su...@ka... |
|
From: <su...@ka...> - 2008-05-01 03:04:12
|
Update of /cvsroot/mcast-tools/mcast-tools/pim6dd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18830/pim6dd Modified Files: Makefile Log Message: pim6sd supports linux now (experimental). IPv6-multicast-aware linux kernel is available from USAGI Project or the latest 2.6 snapshot. (contributed by USAGI Project) Index: Makefile =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/pim6dd/Makefile,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Makefile 24 Jun 2006 08:53:47 -0000 1.11 --- Makefile 1 May 2008 03:03:38 -0000 1.12 *************** *** 130,134 **** STRIP = SUBDIRS = . ! UK_METHOD = routesock.o VERSION = 20050926 YACC = bison -y --- 130,134 ---- STRIP = SUBDIRS = . ! UK_METHOD = routesock VERSION = 20050926 YACC = bison -y |
|
From: <su...@ka...> - 2008-05-01 03:04:12
|
Update of /cvsroot/mcast-tools/mcast-tools/mtrace6 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18830/mtrace6 Modified Files: Makefile Log Message: pim6sd supports linux now (experimental). IPv6-multicast-aware linux kernel is available from USAGI Project or the latest 2.6 snapshot. (contributed by USAGI Project) Index: Makefile =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/mtrace6/Makefile,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile 7 Apr 2008 11:57:48 -0000 1.10 --- Makefile 1 May 2008 03:03:37 -0000 1.11 *************** *** 123,127 **** STRIP = SUBDIRS = . ! UK_METHOD = routesock.o VERSION = 20050926 YACC = bison -y --- 123,127 ---- STRIP = SUBDIRS = . ! UK_METHOD = routesock VERSION = 20050926 YACC = bison -y |
|
From: <su...@ka...> - 2008-05-01 03:04:12
|
Update of /cvsroot/mcast-tools/mcast-tools In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18830 Modified Files: ChangeLog Makefile configure configure.in Log Message: pim6sd supports linux now (experimental). IPv6-multicast-aware linux kernel is available from USAGI Project or the latest 2.6 snapshot. (contributed by USAGI Project) Index: ChangeLog =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/ChangeLog,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** ChangeLog 7 Apr 2008 12:13:59 -0000 1.27 --- ChangeLog 1 May 2008 03:03:36 -0000 1.28 *************** *** 1,2 **** --- 1,12 ---- + May 1 2008 su...@ka... + - include/linux/*, configure, configure.in, include/config.h.in, + pim6sd/Makefile, pim6sd/Makefile.am, pim6sd/Makefile.in, pim6sd/config.c, + pim6sd/debug.c, pim6sd/main.c, pim6sd/mld6.c, pim6sd/mld6.h, pim6sd/mrt.c, + pim6sd/netlink.c pim6sd/pim6.c, pim6sd/pim6_proto.c, pim6sd/route.c, + pim6sd/routesock.c, pim6sd/rp.c: + pim6sd supports linux now (experimental). + IPv6-multicast-aware linux kernel is available from USAGI Project + or the latest 2.6 snapshot. (contributed by USAGI Project) + Apr 7 2008 su...@ka... - mtrace6.c: use "struct in6_ifreq" only when SIOCGIFAFLAG_IN6 is available. Index: Makefile =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/Makefile,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile 7 Apr 2008 11:47:41 -0000 1.12 --- Makefile 1 May 2008 03:03:36 -0000 1.13 *************** *** 115,119 **** STRIP = SUBDIRS = mcastread mcastsend mfc mtrace6 pim6dd pim6sd pmsft ! UK_METHOD = routesock.o VERSION = 20050926 YACC = bison -y --- 115,119 ---- STRIP = SUBDIRS = mcastread mcastsend mfc mtrace6 pim6dd pim6sd pmsft ! UK_METHOD = routesock VERSION = 20050926 YACC = bison -y Index: configure =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/configure,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** configure 7 Apr 2008 11:47:40 -0000 1.16 --- configure 1 May 2008 03:03:36 -0000 1.17 *************** *** 7314,7317 **** --- 7314,7320 ---- main () { + #ifdef AF_NETLINK + exit(1); + #else int ac_sock; *************** *** 7320,7323 **** --- 7323,7327 ---- exit (1); exit (0); + #endif } _ACEOF *************** *** 7337,7341 **** _ACEOF ! UK_METHOD=routesock.o echo "$as_me:$LINENO: result: routing socket" >&5 echo "${ECHO_T}routing socket" >&6 --- 7341,7345 ---- _ACEOF ! UK_METHOD=routesock echo "$as_me:$LINENO: result: routing socket" >&5 echo "${ECHO_T}routing socket" >&6 *************** *** 7350,7354 **** _ACEOF ! UK_METHOD=netlink.o echo "$as_me:$LINENO: result: netlink" >&5 echo "${ECHO_T}netlink" >&6 --- 7354,7358 ---- _ACEOF ! UK_METHOD=netlink echo "$as_me:$LINENO: result: netlink" >&5 echo "${ECHO_T}netlink" >&6 Index: configure.in =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/configure.in,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** configure.in 7 Apr 2008 11:47:39 -0000 1.16 --- configure.in 1 May 2008 03:03:36 -0000 1.17 *************** *** 178,181 **** --- 178,184 ---- main () { + #ifdef AF_NETLINK + exit(1); + #else int ac_sock; *************** *** 184,193 **** exit (1); exit (0); }], [AC_DEFINE(HAVE_ROUTING_SOCKETS) ! UK_METHOD=routesock.o AC_MSG_RESULT(routing socket)], [AC_DEFINE(HAVE_NETLINK) ! UK_METHOD=netlink.o AC_MSG_RESULT(netlink)]) AC_SUBST(UK_METHOD) --- 187,197 ---- exit (1); exit (0); + #endif }], [AC_DEFINE(HAVE_ROUTING_SOCKETS) ! UK_METHOD=routesock AC_MSG_RESULT(routing socket)], [AC_DEFINE(HAVE_NETLINK) ! UK_METHOD=netlink AC_MSG_RESULT(netlink)]) AC_SUBST(UK_METHOD) |
|
From: <su...@ka...> - 2008-05-01 03:04:12
|
Update of /cvsroot/mcast-tools/mcast-tools/mfc In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18830/mfc Modified Files: Makefile Log Message: pim6sd supports linux now (experimental). IPv6-multicast-aware linux kernel is available from USAGI Project or the latest 2.6 snapshot. (contributed by USAGI Project) Index: Makefile =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/mfc/Makefile,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Makefile 24 Jun 2006 08:53:47 -0000 1.11 --- Makefile 1 May 2008 03:03:37 -0000 1.12 *************** *** 125,129 **** STRIP = SUBDIRS = . ! UK_METHOD = routesock.o VERSION = 20050926 YACC = bison -y --- 125,129 ---- STRIP = SUBDIRS = . ! UK_METHOD = routesock VERSION = 20050926 YACC = bison -y |
|
From: <su...@ka...> - 2008-05-01 03:04:12
|
Update of /cvsroot/mcast-tools/mcast-tools/mcastread In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18830/mcastread Modified Files: Makefile Log Message: pim6sd supports linux now (experimental). IPv6-multicast-aware linux kernel is available from USAGI Project or the latest 2.6 snapshot. (contributed by USAGI Project) Index: Makefile =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/mcastread/Makefile,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Makefile 24 Jun 2006 08:53:47 -0000 1.11 --- Makefile 1 May 2008 03:03:37 -0000 1.12 *************** *** 120,124 **** STRIP = SUBDIRS = . ! UK_METHOD = routesock.o VERSION = 20050926 YACC = bison -y --- 120,124 ---- STRIP = SUBDIRS = . ! UK_METHOD = routesock VERSION = 20050926 YACC = bison -y |
|
From: <su...@ka...> - 2008-05-01 03:04:12
|
Update of /cvsroot/mcast-tools/mcast-tools/include In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18830/include Modified Files: config.h config.h.in Log Message: pim6sd supports linux now (experimental). IPv6-multicast-aware linux kernel is available from USAGI Project or the latest 2.6 snapshot. (contributed by USAGI Project) Index: config.h =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/include/config.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** config.h 24 Jun 2006 08:53:47 -0000 1.10 --- config.h 1 May 2008 03:03:37 -0000 1.11 *************** *** 82,85 **** --- 82,88 ---- #define HAVE_ROUTING_SOCKETS 1 + /* Define to 1 if you support the 'netlink' function. */ + /* #undef HAVE_NETLINK */ + /* Define to 1 if you have a length field in struct sockaddr */ #define HAVE_SA_LEN 1 Index: config.h.in =================================================================== RCS file: /cvsroot/mcast-tools/mcast-tools/include/config.h.in,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** config.h.in 24 Jun 2006 08:53:47 -0000 1.6 --- config.h.in 1 May 2008 03:03:37 -0000 1.7 *************** *** 81,84 **** --- 81,87 ---- #undef HAVE_ROUTING_SOCKETS + /* Define to 1 if you support the 'netlink' function. */ + #undef HAVE_NETLINK + /* Define to 1 if you have a length field in struct sockaddr */ #undef HAVE_SA_LEN |