Home
last modified time | relevance | path

Searched refs:hints (Results 1 – 25 of 104) sorted by relevance

12345

/f-stack/app/redis-5.0.5/src/
H A Danet.c215 struct addrinfo hints, *info; in anetGenericResolve() local
218 memset(&hints,0,sizeof(hints)); in anetGenericResolve()
220 hints.ai_family = AF_UNSPEC; in anetGenericResolve()
282 struct addrinfo hints, *servinfo, *bservinfo, *p, *b; in anetTcpGenericConnect() local
285 memset(&hints,0,sizeof(hints)); in anetTcpGenericConnect()
286 hints.ai_family = AF_UNSPEC; in anetTcpGenericConnect()
287 hints.ai_socktype = SOCK_STREAM; in anetTcpGenericConnect()
478 struct addrinfo hints, *servinfo, *p; in _anetTcpServer() local
481 memset(&hints,0,sizeof(hints)); in _anetTcpServer()
482 hints.ai_family = af; in _anetTcpServer()
[all …]
/f-stack/tools/compat/
H A Dgetaddrinfo.c46 const struct addrinfo *hints, struct addrinfo **res) in getaddrinfo() argument
67 if (hints != NULL) { in getaddrinfo()
68 si->sin_family = ai->ai_family = hints->ai_family; in getaddrinfo()
69 ai->ai_socktype = hints->ai_socktype; in getaddrinfo()
/f-stack/freebsd/mips/conf/
H A Dstd.AR933X4 # This file (and the hints file accompanying it) are not designed to be
6 # config file which includes this file (which gets the basic hints), then
8 # hints as needed (for example, the GPIO and LAN PHY.)
20 hints "AR933X_BASE.hints"
36 # Enable boot time calibration hints
H A Dstd.AR91XX4 # This file (and the hints file accompanying it) are not designed to be
6 # config file which includes this file (which gets the basic hints), then
8 # hints as needed (for example, the GPIO and LAN PHY.)
20 hints "AR91XX_BASE.hints"
H A Dstd.AR934X4 # This file (and the hints file accompanying it) are not designed to be
6 # config file which includes this file (which gets the basic hints), then
8 # hints as needed (for example, the GPIO and LAN PHY.)
20 hints "AR934X_BASE.hints"
H A Dstd.QCA955X5 # This file (and the hints file accompanying it) are not designed to be
7 # config file which includes this file (which gets the basic hints), then
9 # hints as needed (for example, the GPIO and LAN PHY.)
21 hints "QCA955X_BASE.hints"
H A DQCA953X_BASE4 # This file (and the hints file accompanying it) are not designed to be
6 # config file which includes this file (which gets the basic hints), then
8 # hints as needed (for example, the GPIO and LAN PHY.)
20 hints "QCA953X_BASE.hints"
H A DBERI_DE4_BASE22 hints "BERI_DE4.hints" # Flash partitions still use hints.
H A DONIONOMEGA21 # Override hints with board values
22 hints "ONIONOMEGA.hints"
H A DDB12014 # Override hints with board values
15 hints "DB120.hints"
H A DAP12119 # Override hints with board values
20 hints "AP121.hints"
H A DCARAMBOLA221 # Override hints with board values
22 hints "CARAMBOLA2.hints"
H A DAP14319 # Override hints with board values
20 hints "AP143.hints"
H A DTL-WR1043NDv217 # Override hints with board values
18 hints "TL-WR1043NDv2.hints"
H A DTL-WR740Nv419 # Override hints with board values
20 hints "TL-WR740Nv4.hints"
H A DROUTERSTATION_MFS11 hints "ROUTERSTATION.hints"
H A DTP-MR302026 # Override hints with board values
27 hints "TP-MR3020.hints"
H A DALFA_HORNET_UB25 # Override hints with board values
26 hints "ALFA_HORNET_UB.hints"
H A DDIR-655A117 # Override hints with board values
18 hints "DIR-655A1.hints"
H A DAR71XX_BASE19 # For now, hints are per-board.
21 hints "AR71XX_BASE.hints"
H A DTP-WN1043ND14 # Override hints with board values
15 hints "TP-WN1043ND.hints"
H A DTL-WDR430014 # Override hints with board values
15 hints "TL-WDR4300.hints"
/f-stack/tools/libutil/
H A Drealhostname.c134 struct addrinfo hints, *res, *ores; in realhostname_sa() local
137 memset(&hints, 0, sizeof(struct addrinfo)); in realhostname_sa()
138 hints.ai_family = addr->sa_family; in realhostname_sa()
139 hints.ai_flags = AI_CANONNAME | AI_PASSIVE; in realhostname_sa()
140 hints.ai_socktype = SOCK_STREAM; in realhostname_sa()
142 error = getaddrinfo(buf, NULL, &hints, &res); in realhostname_sa()
/f-stack/tools/ifconfig/
H A Difpfsync.c100 struct addrinfo hints, *peerres; in setpfsync_syncpeer() local
109 memset(&hints, 0, sizeof(hints)); in setpfsync_syncpeer()
110 hints.ai_family = AF_INET; in setpfsync_syncpeer()
111 hints.ai_socktype = SOCK_DGRAM; /*dummy*/ in setpfsync_syncpeer()
113 if ((ecode = getaddrinfo(val, NULL, &hints, &peerres)) != 0) in setpfsync_syncpeer()
/f-stack/app/redis-5.0.5/deps/hiredis/
H A Dnet.c270 struct addrinfo hints, *servinfo, *bservinfo, *p, *b; in _redisContextConnectTcp() local
321 memset(&hints,0,sizeof(hints)); in _redisContextConnectTcp()
322 hints.ai_family = AF_INET; in _redisContextConnectTcp()
323 hints.ai_socktype = SOCK_STREAM; in _redisContextConnectTcp()
330 if ((rv = getaddrinfo(c->tcp.host,_port,&hints,&servinfo)) != 0) { in _redisContextConnectTcp()
331 hints.ai_family = AF_INET6; in _redisContextConnectTcp()
332 if ((rv = getaddrinfo(addr,_port,&hints,&servinfo)) != 0) { in _redisContextConnectTcp()
348 if ((rv = getaddrinfo(c->tcp.source_addr, NULL, &hints, &bservinfo)) != 0) { in _redisContextConnectTcp()

12345