Lines Matching defs:netflow
407 struct netflow { struct
408 node_p node; /* link to the node itself */
409 hook_p export; /* export data goes there */
410 hook_p export9; /* Netflow V9 export data goes there */
411 struct callout exp_callout; /* expiry periodic job */
421 uma_zone_t zone;
422 struct flow_hash_entry *hash;
438 uma_zone_t zone6;
439 struct flow_hash_entry *hash6;
443 counter_u64_t nfinfo_bytes; /* accounted IPv4 bytes */
444 counter_u64_t nfinfo_packets; /* accounted IPv4 packets */
445 counter_u64_t nfinfo_bytes6; /* accounted IPv6 bytes */
446 counter_u64_t nfinfo_packets6; /* accounted IPv6 packets */
447 counter_u64_t nfinfo_sbytes; /* skipped IPv4 bytes */
448 counter_u64_t nfinfo_spackets; /* skipped IPv4 packets */
449 counter_u64_t nfinfo_sbytes6; /* skipped IPv6 bytes */
450 counter_u64_t nfinfo_spackets6; /* skipped IPv6 packets */
451 counter_u64_t nfinfo_act_exp; /* active expiries */
452 counter_u64_t nfinfo_inact_exp; /* inactive expiries */
453 uint32_t nfinfo_alloc_failed; /* failed allocations */
454 uint32_t nfinfo_export_failed; /* failed exports */
455 uint32_t nfinfo_export9_failed; /* failed exports */
456 uint32_t nfinfo_realloc_mbuf; /* reallocated mbufs */
480 struct netflow_v9_flowset_header argument
483 struct ng_netflow_iface ifaces[NG_NETFLOW_MAXIFACES]; argument
486 typedef struct netflow *priv_p; argument