mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Fix multicast routing on 64-bit platforms.
Tested on: amd64 MFC after: 3 days
This commit is contained in:
parent
44ac0964e9
commit
bc7eeed4c9
1 changed files with 2 additions and 2 deletions
|
|
@ -294,8 +294,8 @@ struct mfc {
|
|||
* note the convenient similarity to an IP packet
|
||||
*/
|
||||
struct igmpmsg {
|
||||
u_long unused1;
|
||||
u_long unused2;
|
||||
u_int32_t unused1;
|
||||
u_int32_t unused2;
|
||||
u_char im_msgtype; /* what type of message */
|
||||
#define IGMPMSG_NOCACHE 1 /* no MFC in the kernel */
|
||||
#define IGMPMSG_WRONGVIF 2 /* packet came from wrong interface */
|
||||
|
|
|
|||
Loading…
Reference in a new issue