Skip to content
Permalink
Browse files
Merge pull request #10934 from sepalani/bba-igmp
BBA/BuiltIn: Add minimal IGMP support
  • Loading branch information
lioncash committed Aug 3, 2022
2 parents f93b04d + 4fa65ec commit ebb8402
Showing 1 changed file with 12 additions and 0 deletions.
@@ -556,6 +556,18 @@ bool CEXIETHERNET::BuiltInBBAInterface::SendFrame(const u8* frame, u32 size)
HandleTCPFrame(*tcp_packet);
break;
}

case IPPROTO_IGMP:
{
// Acknowledge IGMP packet
const std::vector<u8> data(frame, frame + size);
WriteToQueue(data);
break;
}

default:
ERROR_LOG_FMT(SP1, "Unsupported IP protocol {}", *ip_proto);
break;
}
break;
}

0 comments on commit ebb8402

Please sign in to comment.