Lines Matching defs:flow

37 CXV("direction",		"number",	NETFLOW_direction,		"Flow direction: 0 - ingress flow, 1 - egress flow.")
54 CXV("engine_id", "number", NETFLOW_engine_id, "ID number of the flow switching engine.")
55 CXV("engine_type", "number", NETFLOW_engine_type, "Type of flow switching engine 0: RP, 1: VIP/linecard.")
56 CXV("first", "elapsed_t", NETFLOW_first, "Elapsed milliseconds at flow start.")
57 CXV("flags", "number", NETFLOW_flags, "Reason flow was discarded, etc.")
58 CXV("flow_active_timeout", "number", NETFLOW_flow_active_timeout, "Timeout value (in seconds) for active flow cache entries.")
59 CXV("flow_inactive_timeout", "number", NETFLOW_flow_inactive_timeout, "Timeout value (in seconds) for inactive flow cache entries.")
60 CXV("flow_label", "number", NETFLOW_flow_label, "ipv6 RFC 2460 flow label.")
75 CXV("in_permanent_bytes", "number", NETFLOW_in_permanent_bytes, "Permanent flow byte count.")
76 CXV("in_permanent_packets", "number", NETFLOW_in_permanent_packets, "Permanent flow packet count.")
81 CXV("last", "elapsed_t", NETFLOW_last, "Elapsed milliseconds at flow end.")
102 CXV("option_headers", "number", NETFLOW_option_headers, "Bit-encoded field identifying ipv6 option headers found in the flow.")
108 CXV("packets", "number", NETFLOW_packets, "Number of packets in flow.")
133 CXV("tcp_flags", "number", NETFLOW_tcp_flags, "Cumulative OR of tcp flags for this flow.")
671 #define BUFFER(n,f) { offsetof(Netflow_t,n), sizeof(flow->n), NETFLOW_BUFFER, f }
672 #define NUMBER(n,f) { offsetof(Netflow_t,n), sizeof(flow->n), NETFLOW_NUMBER, f }
674 static Netflow_t* flow;
788 Netflow_method_t* flow;
790 if (!(flow = vmnewof(dss->vm, 0, Netflow_method_t, 1, 0)) ||
791 !(flow->type_ipv4addr = cxtype(dss->cx, "ipv4addr_t", disc)) ||
792 !(flow->type_ipv4prefix = cxtype(dss->cx, "ipv4prefix_t", disc)) ||
793 !(flow->type_ipv6addr = cxtype(dss->cx, "ipv6addr_t", disc)) ||
794 !(flow->type_ipv6prefix = cxtype(dss->cx, "ipv6prefix_t", disc)) ||
795 !(flow->tmp = sfstropen()))
797 if (flow)
798 vmfree(dss->vm, flow);
803 flow->base = (Netflow_template_t*)&template;
804 dss->data = flow;