• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/libnetfilter_cttimeout-1.0.0/src/

Lines Matching defs:timeout

137 	uint32_t			*timeout;	/* array of timeout. */
146 * infrastructure allows you to define fine-grain connection tracking timeout
149 * timeout policies per protocol. This library is currently used by the nfct
160 * - listing/retrieving entries from the timeout policy table.
161 * - inserting/modifying/deleting entries from the timeout policy table.
170 * the timeout policy table dumping operation.
182 * nfct_timeout_alloc - allocate a new conntrack timeout object
185 * You can use IPPROTO_MAX to set the timeout for the generic protocol tracker.
203 * nfct_timeout_free - release one conntrack timeout object
204 * \param t pointer to the conntrack timeout object
208 if (t->timeout)
209 free(t->timeout);
215 * nfct_timeout_attr_set - set one attribute of the conntrack timeout object
216 * \param t pointer to the conntrack timeout object
242 * nfct_timeout_attr_set_u8 - set one attribute of the conntrack timeout object
243 * \param t pointer to the conntrack timeout object
255 * nfct_timeout_attr_set_u16 - set one attribute of the conntrack timeout object
256 * \param t pointer to the conntrack timeout object
268 * nfct_timeout_attr_unset - unset one attribute of the conntrack timeout object
269 * \param t pointer to the conntrack timeout object
280 * \param t pointer to the conntrack timeout object
294 if (t->timeout == NULL) {
305 t->timeout = calloc(1, timeout_array_size);
306 if (t->timeout == NULL)
314 t->timeout[type] = data;
326 * \param t pointer to the conntrack timeout object
412 "\t\t.%s = %u,\n", state_name, t->timeout[i]);
431 * nfct_timeout_snprintf - print conntrack timeout object into one buffer
434 * \param t: pointer to a valid conntrack timeout object.
469 * nfct_timeout_nlmsg_build_hdr - build netlink message header for ct timeout
476 * - CTNL_MSG_TIMEOUT_NEW: new conntrack timeout object.
477 * - CTNL_MSG_TIMEOUT_GET: get conntrack timeout object.
478 * - CTNL_MSG_TIMEOUT_DEL: delete conntrack timeout object.
502 * nfct_timeout_nlmsg_build_payload - build payload from ct timeout object
504 * \param t: pointer to a conntrack timeout object
528 htonl(t->timeout[i]));
625 * nfct_timeout_nlmsg_parse_payload - set timeout object attributes from message
627 * \param t: pointer to a conntrack timeout object