Lines Matching refs:dissector
211 local function dissector(type, e, dst, src, field) function
220 M.dissector = dissector
286 M.dot1q = function (...) return dissector(ffi.typeof('struct dot1q_t'), ...) end
287 M.arp = function (...) return dissector(ffi.typeof('struct arp_t'), ...) end
288 M.icmp = function (...) return dissector(ffi.typeof('struct icmp_t'), ...) end
289 M.ip = function (...) return dissector(ffi.typeof('struct ip_t'), ...) end
290 M.icmp6 = function (...) return dissector(ffi.typeof('struct icmp6_t'), ...) end
291 M.ip6 = function (...) return dissector(ffi.typeof('struct ip6_t'), ...) end
292 M.ip6_opt = function (...) return dissector(ffi.typeof('struct ip6_opt_t'), ...) end
293 M.udp = function (...) return dissector(ffi.typeof('struct udp_t'), ...) end
294 M.tcp = function (...) return dissector(ffi.typeof('struct tcp_t'), ...) end
295 M.vxlan = function (...) return dissector(ffi.typeof('struct vxlan_t'), ...) end
296 M.data = function (...) return dissector(ffi.typeof('uint8_t'), ...) end
297 M.net_off = function (...) return dissector(ffi.typeof('struct net_off_t'), ...) end