Home
last modified time | relevance | path

Searched refs:streams_pool (Results 1 – 2 of 2) sorted by relevance

/dports/net/libnids/libnids-1.24/src/
H A Dtcp.c54 static struct tcp_stream *streams_pool; variable
683 if (!tcp_stream_table || !streams_pool) in tcp_exit()
699 free(streams_pool); in tcp_exit()
700 streams_pool = NULL; in tcp_exit()
938 streams_pool = (struct tcp_stream *) malloc((max_stream + 1) * sizeof(struct tcp_stream)); in tcp_init()
939 if (!streams_pool) { in tcp_init()
944 streams_pool[i].next_free = &(streams_pool[i + 1]); in tcp_init()
945 streams_pool[max_stream].next_free = 0; in tcp_init()
946 free_streams = streams_pool; in tcp_init()
H A Dlibnids-track-established.patch123 static struct tcp_stream *streams_pool;