| /f-stack/app/redis-5.0.5/src/ |
| H A D | anet.c | 215 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 D | getaddrinfo.c | 46 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 D | std.AR933X | 4 # 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 D | std.AR91XX | 4 # 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 D | std.AR934X | 4 # 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 D | std.QCA955X | 5 # 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 D | QCA953X_BASE | 4 # 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 D | BERI_DE4_BASE | 22 hints "BERI_DE4.hints" # Flash partitions still use hints.
|
| H A D | ONIONOMEGA | 21 # Override hints with board values 22 hints "ONIONOMEGA.hints"
|
| H A D | DB120 | 14 # Override hints with board values 15 hints "DB120.hints"
|
| H A D | AP121 | 19 # Override hints with board values 20 hints "AP121.hints"
|
| H A D | CARAMBOLA2 | 21 # Override hints with board values 22 hints "CARAMBOLA2.hints"
|
| H A D | AP143 | 19 # Override hints with board values 20 hints "AP143.hints"
|
| H A D | TL-WR1043NDv2 | 17 # Override hints with board values 18 hints "TL-WR1043NDv2.hints"
|
| H A D | TL-WR740Nv4 | 19 # Override hints with board values 20 hints "TL-WR740Nv4.hints"
|
| H A D | ROUTERSTATION_MFS | 11 hints "ROUTERSTATION.hints"
|
| H A D | TP-MR3020 | 26 # Override hints with board values 27 hints "TP-MR3020.hints"
|
| H A D | ALFA_HORNET_UB | 25 # Override hints with board values 26 hints "ALFA_HORNET_UB.hints"
|
| H A D | DIR-655A1 | 17 # Override hints with board values 18 hints "DIR-655A1.hints"
|
| H A D | AR71XX_BASE | 19 # For now, hints are per-board. 21 hints "AR71XX_BASE.hints"
|
| H A D | TP-WN1043ND | 14 # Override hints with board values 15 hints "TP-WN1043ND.hints"
|
| H A D | TL-WDR4300 | 14 # Override hints with board values 15 hints "TL-WDR4300.hints"
|
| /f-stack/tools/libutil/ |
| H A D | realhostname.c | 134 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 D | ifpfsync.c | 100 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 D | net.c | 270 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()
|