> Apart from disabling INET6 in the inetd build, is there any way of
> supressing inetd from trying to bind v6 services? I like using rup
> on the internal network, but it's not working on my latest-sup-current.
Sorry for your problem and please try this patch.
Now I am waiting to get commit permission.
Yoshinobu Inoue
Index: inetd.c
===================================================================
RCS file: /home/ncvs/src/usr.sbin/inetd/inetd.c,v
retrieving revision 1.77
diff -u -r1.77 inetd.c
--- inetd.c 2000/01/28 20:06:15 1.77
+++ inetd.c 2000/02/01 15:11:35
@@ -1522,8 +1522,9 @@
} else
sep->se_proto = newstr(arg);
if (strncmp(sep->se_proto, "rpc/", 4) == 0) {
- if (sep->se_family != AF_INET) {
- syslog(LOG_ERR, "IPv6 for RPC is not supported yet");
+ if (no_v4bind != 0) {
+ syslog(LOG_INFO, "IPv4 bind is ignored for %s",
+ sep->se_service);
freeconfig(sep);
goto more;
}
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message