Lines Matching refs:ts_lsns
52 int *ts_lsns;
117 ts->ts_lsns = (int *)malloc(lm_optB * sizeof (int));
118 if (ts->ts_lsns == NULL) {
138 ts->ts_lsns[i] = socket(AF_INET, SOCK_STREAM, 0);
139 if (ts->ts_lsns[i] == -1) {
149 if (fcntl(ts->ts_lsns[i], F_SETFL, O_NDELAY) == -1) {
167 if (bind(ts->ts_lsns[i],
178 if (listen(ts->ts_lsns[i], 5) == -1) {
266 result = accept(ts->ts_lsns[i],
271 pollfd.fd = ts->ts_lsns[i];