Redirect FIXME to more appropriate bug

PiperOrigin-RevId: 234147487
Change-Id: I779a6012832bb94a6b89f5bcc7d821b40ae969cc
This commit is contained in:
Fabricio Voznika 2019-02-15 08:22:26 -08:00 committed by Shentubot
parent 0a41ea72c1
commit e34d27e8b6
1 changed files with 4 additions and 1 deletions

View File

@ -1139,11 +1139,14 @@ func setSockOptIP(t *kernel.Task, ep commonEndpoint, name int, optVal []byte) *s
MulticastAddr: tcpip.Address(req.MulticastAddr[:]),
}))
case linux.MCAST_JOIN_GROUP, linux.IP_MULTICAST_IF:
case linux.IP_MULTICAST_IF:
// FIXME: Disallow IP-level multicast group options by
// default. These will need to be supported by appropriately plumbing
// the level through to the network stack (if at all). However, we
// still allow setting TTL, and multicast-enable/disable type options.
fallthrough
case linux.MCAST_JOIN_GROUP:
// FIXME: Implement MCAST_JOIN_GROUP.
t.Kernel().EmitUnimplementedEvent(t)
return syserr.ErrInvalidArgument