Searched defs:linger (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/tpool/
H A Dthread_pool.c236 tpool_create(uint_t min_threads, uint_t max_threads, uint_t linger, argument
281 tpool->tp_linger = linger;
/illumos-gate/usr/src/lib/libwrap/
H A Doptions.c86 static void linger_option(); /* execute "linger time" option */
123 "linger", linger_option, NEED_ARG,
322 /* linger_option - set the socket linger time (Marc Boucher <marc@cam.org>) */
330 struct linger linger; local
333 if (sscanf(value, "%d%c", &linger.l_linger, &junk) != 1
334 || linger.l_linger < 0)
335 tcpd_jump("bad linger value: \"%s\"", value);
337 linger.l_onoff = (linger
[all...]
/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dsocket.h40 #define SO_LINGER 0x0080 /* linger on close if data present */
61 * Structure used for manipulating linger option.
63 struct linger { struct
65 int l_linger; /* linger time */
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.rshd.c181 struct linger linger; local
363 linger.l_onoff = 1;
364 linger.l_linger = 60; /* XXX */
365 if (setsockopt(fd, SOL_SOCKET, SO_LINGER, (char *)&linger,
366 sizeof (linger)) < 0)
/illumos-gate/usr/src/cmd/krb5/slave/
H A Dkpropd.c322 struct linger linger; local
357 * linger around for too long
364 linger.l_onoff = 1;
365 linger.l_linger = 2;
367 (void *)&linger, sizeof(linger)) < 0)
496 * Sleeping 3s for 2s linger interval.
/illumos-gate/usr/src/uts/common/sys/
H A Dsocket.h127 #define SO_LINGER 0x0080 /* linger on close if data present */
237 * Structure used for manipulating linger option.
239 struct linger { struct
241 int l_linger; /* linger time */
/illumos-gate/usr/src/boot/sys/sys/
H A Dsocket.h128 #define SO_LINGER 0x0080 /* linger on close if data present */
173 * Structure used for manipulating linger option.
175 struct linger { struct
177 int l_linger; /* linger time */

Completed in 96 milliseconds