diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-12-17 09:57:14 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-12-17 09:57:14 +0000 |
commit | fbb0c287d621006e93e413c445e942dc06d39877 (patch) | |
tree | 1c562e62b0769ba6e89c86717cf7c5b2a71d9226 /sys/netinet/ip_var.h | |
parent | 4a1d9e6f74632234e5154114e6e0d008d93caddb (diff) |
Remove the "multicast_" prefix from the fields a multicast-only struct.
Prodded by claudio@ and mikeb@
Diffstat (limited to 'sys/netinet/ip_var.h')
-rw-r--r-- | sys/netinet/ip_var.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index c2dca5d0db3..4489eae9611 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_var.h,v 1.58 2014/12/17 09:45:59 mpi Exp $ */ +/* $OpenBSD: ip_var.h,v 1.59 2014/12/17 09:57:13 mpi Exp $ */ /* $NetBSD: ip_var.h,v 1.16 1996/02/13 23:43:20 christos Exp $ */ /* @@ -103,8 +103,8 @@ struct ipoption { struct ip_moptions { struct in_multi **imo_membership; /* group memberships */ unsigned short imo_ifidx; /* ifp index for outgoing multicasts */ - u_int8_t imo_multicast_ttl; /* TTL for outgoing multicasts */ - u_int8_t imo_multicast_loop; /* 1 => hear sends if a member */ + u_int8_t imo_ttl; /* TTL for outgoing multicasts */ + u_int8_t imo_loop; /* 1 => hear sends if a member */ u_int16_t imo_num_memberships; /* no. memberships this socket */ u_int16_t imo_max_memberships; /* max memberships this socket */ }; |