Home | History | Annotate | Download | only in netinet

Lines Matching defs:is

570 /* This function is called when a user program wants to read some data      */
571 /* for pending state/NAT updates. If no data is available, the caller is */
676 /* header. As required, more data is fetched from the uio structure but */
678 /* create a new state entry or update one. Deletion is left to the state */
686 ipstate_t *is, sn;
699 KMALLOC(is, ipstate_t *);
700 if (is == NULL) {
710 KFREE(is);
714 bzero((char *)is, offsetof(ipstate_t, is_die));
715 bcopy((char *)&sn.is_die, (char *)&is->is_die,
716 sizeof(*is) - offsetof(ipstate_t, is_die));
717 ipf_sync_storder(0, is);
736 is->is_rule = fr;
737 is->is_sync = sl;
740 sl->sl_ips = is;
752 ipf_state_insert(softc, is, sp->sm_rev);
760 /*fr_setstatequeue(is, sp->sm_rev);*/
794 is = sl->sl_ips;
796 MUTEX_ENTER(&is->is_lock);
801 is->is_send = su.stu_data[0].td_end;
802 is->is_maxsend = su.stu_data[0].td_maxend;
803 is->is_maxswin = su.stu_data[0].td_maxwin;
804 is->is_state[0] = su.stu_state[0];
805 is->is_dend = su.stu_data[1].td_end;
806 is->is_maxdend = su.stu_data[1].td_maxend;
807 is->is_maxdwin = su.stu_data[1].td_maxwin;
808 is->is_state[1] = su.stu_state[1];
817 ipf_state_setqueue(softc, is, sp->sm_rev);
819 MUTEX_EXIT(&is->is_lock);
904 /* header. As required, more data is fetched from the uio structure but */
906 /* create a new NAT entry or update one. Deletion is left to the NAT */
1025 * Get a unique number for this synclist_t. The number is only meant
1040 * nth connection they make, where n is a value in the interval
1219 /* Walk through a table of sync entries and free each one. It is assumed */
1220 /* that some lock is held so that nobody else tries to access the table */
1342 /* there is data waiting to be read from the /dev/ipsync device. */
1358 /* This function lets the poll handler know that it is always ready willing */
1360 /* XXX Maybe this should return false if the sync table is full? */
1379 /* - do not keep a program waiting too long: ipf_sync_wake_interval is the */
1382 /* get too full (ipf_sync_queue_high_wm is the high water mark); */
1384 /* other host(s) need an update (ipf_sync_event_high_wm is the high water */
1440 /* This is the function called even ipf_tick. It implements one of the */