HomeSort by relevance Sort by last modified time
    Searched refs:rtsock (Results 1 - 3 of 3) sorted by null

  /external/ipsec-tools/src/racoon/
session.c 225 if (lcconf->rtsock >= 0 && FD_ISSET(lcconf->rtsock, &rfds)) {
294 if (lcconf->rtsock >= 0) {
295 if (lcconf->rtsock >= FD_SETSIZE) {
299 FD_SET(lcconf->rtsock, &mask0);
300 nfds = (nfds > lcconf->rtsock ? nfds : lcconf->rtsock);
localconf.h 82 int rtsock; /* routing socket */ member in struct:localconf
grabmyaddr.c 628 len = read(lcconf->rtsock, msg, sizeof(msg));
645 len = read(lcconf->rtsock, msg, sizeof(msg));
661 close(lcconf->rtsock);
662 lcconf->rtsock = -1;
827 lcconf->rtsock = socket(PF_ROUTE, SOCK_RAW, PF_UNSPEC);
828 if (lcconf->rtsock < 0) {
844 if (bind(lcconf->rtsock, (struct sockaddr*)&nl, sizeof(nl)) < 0) {
851 if (getsockname(lcconf->rtsock, (struct sockaddr*)&nl, &addr_len) < 0) {

Completed in 1194 milliseconds