summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-14 19:21:46 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-14 19:21:46 +0000
commit2e016f6f4e8e8e6c8a9e3b08081b928409441946 (patch)
tree4dd6936b09b2fc824a6a9c09c0921e63713ef2c8
parente3b513de4ec799d4a1f7ffd194bb46d09802724c (diff)
2011-07-14 Gene Smith <gene.smith@siemens.com>
PR 1381/networking * netinet/ip_output.c: If a null or unreachable gateway is specified either statically in networkconfig.h or from dhcp/bootp, sendto() fails on multicast send with errno "118 Host is unreachable". The failure occurs in networking file ip_output.c since it currently requires all multicasts to have a valid route to the outside world.
-rw-r--r--cpukit/ChangeLog10
1 files changed, 6 insertions, 4 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index de9976ba21..8988474f5a 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,9 +1,11 @@
-2011-07-14 Gene Smith <gene.smith@siemens.com>
+2011-07-14 Gene Smith <gene.smith@siemens.com>
PR 1381/networking
- * libnetworking/netinet/ip_output.c: If a null or unreachable gateway
- is specified either statically in networkconfig.h or from dhcp/bootp,
- sendto() fails on multicast send with errno 118 Host
+ * netinet/ip_output.c: If a null or unreachable gateway is
+ specified either statically in networkconfig.h or from dhcp/bootp,
+ sendto() fails on multicast send with errno "118 Host is unreachable".
+ The failure occurs in networking file ip_output.c since it currently
+ requires all multicasts to have a valid route to the outside world.
2011-06-10 Joel Sherrill <joel.sherrilL@OARcorp.com>