aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/gso
AgeCommit message (Expand)AuthorFilesLines
2020-10-19gso: add checksum validation in groMohsin Kazmi2-1/+23
2020-09-28virtio: fix the gro enable/disable on tx-vringsMohsin Kazmi1-13/+16
2020-09-16misc: fix the formatting styleMohsin Kazmi2-3/+2
2020-08-14gso: packet coalesce libraryMohsin Kazmi3-0/+887
2020-06-29gso: fix the l2 pathMohsin Kazmi1-8/+10
2020-06-08vxlan: Fixed checksum caclculation offsetVladimir Isaev1-1/+1
2020-05-29gso: fix flag for inner headerMohsin Kazmi1-2/+3
2020-05-13gso: remove ordering dependency on esp-encrypt-tunNeale Ranns1-2/+2
2020-05-05gso: add support for IP-IPMohsin Kazmi4-126/+243
2020-04-22gso: add vxlan tunnel supportMohsin Kazmi5-124/+605
2020-03-30gso: fix the header parser to read onlyMohsin Kazmi1-2/+0
2020-01-16gso: fix typo in the quad-loopSteven Luong1-3/+3
2020-01-10gso: add FEATURE.yamlMohsin Kazmi1-0/+12
2020-01-02gso: fix number of buffers required for segmentationMohsin Kazmi1-3/+4
2019-12-17gso: minor fixes to gso segmentationMohsin Kazmi1-110/+115
2019-12-10api: multiple connections per processDave Barach1-1/+1
2019-12-05gso: add protocol header parserMohsin Kazmi3-24/+121
2019-10-24gso: fix buffers traceBenoƮt Ganne1-0/+1
2019-10-14gso: Add gso feature arcMohsin Kazmi6-0/+1018
="cm"> * @param mode - Host (1) or router (0) */ int igmp_enable_disable (u32 sw_if_index, u8 enable, u8 mode); /** * @brief igmp listen (RFC3376 Section 2). * @param vm - vlib main * @param enable - 0 == remove (S,G), else add (S,G), aka. include/exclude * @param sw_if_index - interface sw_if_index * @param saddr - source address * @param gaddr - group address * * Add/del (S,G) on an interface. If user configured, * send a status change report from the interface. * If a report was received on interface notify registered api clients. */ int igmp_listen (vlib_main_t * vm, u8 enable, u32 sw_if_index, const ip46_address_t * saddr, const ip46_address_t * gaddr); #endif /* _IGMP_API_H_ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */