Make it compile and (except for mrouted which is untested as yet) run.
Some of these ``modified'' files aren't really modified at all, but CVS isn't smart enough to know the difference.
This commit is contained in:
parent
7c680644c9
commit
bb49371b5d
5
usr.sbin/mrouted/Makefile
Normal file
5
usr.sbin/mrouted/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $Id$
|
||||
|
||||
SUBDIR= common mrouted mrinfo map-mbone mtrace
|
||||
|
||||
.include <bsd.subdir.mk>
|
1
usr.sbin/mrouted/Makefile.inc
Normal file
1
usr.sbin/mrouted/Makefile.inc
Normal file
@ -0,0 +1 @@
|
||||
.include "${.CURDIR}/../../Makefile.inc"
|
17
usr.sbin/mrouted/common/Makefile
Normal file
17
usr.sbin/mrouted/common/Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
# $Id$
|
||||
|
||||
LIB= mrouted
|
||||
NOPROFILE=
|
||||
NOSHARED=
|
||||
|
||||
S= ${.CURDIR}/..
|
||||
.PATH: $S
|
||||
CFLAGS+= -I$S
|
||||
|
||||
SRCS= igmp.c inet.c kern.c
|
||||
NOMAN=
|
||||
|
||||
# nothing to install
|
||||
install:
|
||||
|
||||
.include <bsd.lib.mk>
|
@ -85,7 +85,9 @@ extern char s3[];
|
||||
|
||||
extern int errno;
|
||||
extern int sys_nerr;
|
||||
#ifndef __FreeBSD__
|
||||
extern char * sys_errlist[];
|
||||
#endif
|
||||
|
||||
extern void log();
|
||||
|
||||
|
@ -41,6 +41,8 @@ void init_igmp()
|
||||
k_set_loop(FALSE); /* disable multicast loopback */
|
||||
|
||||
ip = (struct ip *)send_buf;
|
||||
ip->ip_hl = sizeof(struct ip) >> 2;
|
||||
ip->ip_v = IPVERSION;
|
||||
ip->ip_tos = 0;
|
||||
ip->ip_off = 0;
|
||||
ip->ip_p = IPPROTO_IGMP;
|
||||
@ -255,7 +257,7 @@ void send_igmp(src, dst, type, code, group, datalen)
|
||||
u_long group;
|
||||
int datalen;
|
||||
{
|
||||
static struct sockaddr_in sdst = {AF_INET};
|
||||
static struct sockaddr_in sdst = {AF_INET, sizeof sdst};
|
||||
struct ip *ip;
|
||||
struct igmp *igmp;
|
||||
|
||||
|
20
usr.sbin/mrouted/map-mbone/Makefile
Normal file
20
usr.sbin/mrouted/map-mbone/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
# $Id$
|
||||
|
||||
PROG= map-mbone
|
||||
|
||||
S= ${.CURDIR}/..
|
||||
.PATH: $S
|
||||
CFLAGS+= -I$S
|
||||
LDADD+= -lmrouted
|
||||
.if exists($S/common/obj)
|
||||
LDDESTDIR+= -L$S/common/obj
|
||||
DPADD+= $S/common/obj/libmrouted.a
|
||||
.else
|
||||
LDDESTDIR+= -L$S/common
|
||||
DPADD+= $S/common/libmrouted.a
|
||||
.endif
|
||||
|
||||
SRCS= mapper.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.prog.mk>
|
@ -575,7 +575,7 @@ char *inet_name(addr)
|
||||
{
|
||||
struct hostent *e;
|
||||
|
||||
e = gethostbyaddr(&addr, sizeof(addr), AF_INET);
|
||||
e = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET);
|
||||
|
||||
return e ? e->h_name : 0;
|
||||
}
|
||||
@ -862,6 +862,7 @@ main(argc, argv)
|
||||
int addrlen = sizeof(addr);
|
||||
|
||||
addr.sin_family = AF_INET;
|
||||
addr.sin_len = sizeof addr;
|
||||
addr.sin_addr.s_addr = dvmrp_group;
|
||||
addr.sin_port = htons(2000); /* any port over 1024 will do... */
|
||||
if ((udp = socket(AF_INET, SOCK_DGRAM, 0)) < 0
|
||||
|
@ -88,7 +88,7 @@ inet_name(addr)
|
||||
{
|
||||
struct hostent *e;
|
||||
|
||||
e = gethostbyaddr(&addr, sizeof(addr), AF_INET);
|
||||
e = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET);
|
||||
|
||||
return e ? e->h_name : "?";
|
||||
}
|
||||
@ -326,6 +326,7 @@ usage: fprintf(stderr,
|
||||
int addrlen = sizeof(addr);
|
||||
|
||||
addr.sin_family = AF_INET;
|
||||
addr.sin_len = sizeof addr;
|
||||
addr.sin_addr.s_addr = target_addr;
|
||||
addr.sin_port = htons(2000); /* any port over 1024 will
|
||||
* do... */
|
||||
|
20
usr.sbin/mrouted/mrinfo/Makefile
Normal file
20
usr.sbin/mrouted/mrinfo/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
# $Id$
|
||||
|
||||
PROG= mrinfo
|
||||
|
||||
S= ${.CURDIR}/..
|
||||
.PATH: $S
|
||||
CFLAGS+= -I$S
|
||||
LDADD+= -lmrouted
|
||||
.if exists($S/common/obj)
|
||||
LDDESTDIR+= -L$S/common/obj
|
||||
DPADD+= $S/common/obj/libmrouted.a
|
||||
.else
|
||||
LDDESTDIR+= -L$S/common
|
||||
DPADD+= $S/common/libmrouted.a
|
||||
.endif
|
||||
|
||||
SRCS= mrinfo.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.prog.mk>
|
20
usr.sbin/mrouted/mrouted/Makefile
Normal file
20
usr.sbin/mrouted/mrouted/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
# $Id$
|
||||
|
||||
PROG= mrouted
|
||||
|
||||
S= ${.CURDIR}/..
|
||||
.PATH: $S
|
||||
CFLAGS+= -I$S
|
||||
LDADD+= -lmrouted
|
||||
.if exists($S/common/obj)
|
||||
LDDESTDIR+= -L$S/common/obj
|
||||
DPADD+= $S/common/obj/libmrouted.a
|
||||
.else
|
||||
LDDESTDIR+= -L$S/common
|
||||
DPADD+= $S/common/libmrouted.a
|
||||
.endif
|
||||
|
||||
SRCS= config.c main.c route.c vif.c prune.c callout.c
|
||||
MAN8= ${.CURDIR}/../mrouted.8
|
||||
|
||||
.include <bsd.prog.mk>
|
@ -16,7 +16,7 @@ inet_name(addr)
|
||||
{
|
||||
struct hostent *e;
|
||||
|
||||
e = gethostbyaddr(&addr, sizeof(addr), AF_INET);
|
||||
e = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET);
|
||||
|
||||
return e ? e->h_name : "?";
|
||||
}
|
||||
@ -219,6 +219,7 @@ usage: printf("usage: mtrace -s <src> -g <grp> -d <dst> -n <# reports> \n");
|
||||
/* Obtain the local address from which to send out packets */
|
||||
|
||||
addr.sin_family = AF_INET;
|
||||
addr.sin_len = sizeof addr;
|
||||
addr.sin_addr.s_addr = qgrp;
|
||||
addr.sin_port = htons(2000);
|
||||
|
||||
|
20
usr.sbin/mrouted/mtrace/Makefile
Normal file
20
usr.sbin/mrouted/mtrace/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
# $Id$
|
||||
|
||||
PROG= mtrace
|
||||
|
||||
S= ${.CURDIR}/..
|
||||
.PATH: $S
|
||||
CFLAGS+= -I$S
|
||||
LDADD+= -lmrouted
|
||||
.if exists($S/common/obj)
|
||||
LDDESTDIR+= -L$S/common/obj
|
||||
DPADD+= $S/common/obj/libmrouted.a
|
||||
.else
|
||||
LDDESTDIR+= -L$S/common
|
||||
DPADD+= $S/common/libmrouted.a
|
||||
.endif
|
||||
|
||||
SRCS= mtrace.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.prog.mk>
|
@ -569,6 +569,7 @@ void accept_neighbor_request(src, dst)
|
||||
int addrlen = sizeof(addr);
|
||||
|
||||
addr.sin_family = AF_INET;
|
||||
addr.sin_len = sizeof addr;
|
||||
addr.sin_addr.s_addr = dst;
|
||||
addr.sin_port = htons(2000); /* any port over 1024 will do... */
|
||||
if ((udp = socket(AF_INET, SOCK_DGRAM, 0)) < 0
|
||||
@ -652,6 +653,7 @@ void accept_neighbor_request2(src, dst)
|
||||
int addrlen = sizeof(addr);
|
||||
|
||||
addr.sin_family = AF_INET;
|
||||
addr.sin_len = sizeof addr;
|
||||
addr.sin_addr.s_addr = dst;
|
||||
addr.sin_port = htons(2000); /* any port over 1024 will do... */
|
||||
if ((udp = socket(AF_INET, SOCK_DGRAM, 0)) < 0
|
||||
|
Loading…
Reference in New Issue
Block a user