| 50 | DEFINE_bool(reuse_uds_path, false, "remove unix domain socket file before listen to it"); |
| 51 | |
| 52 | __BEGIN_DECLS |
| 53 | int BAIDU_WEAK bthread_connect( |
| 54 | int sockfd, const struct sockaddr *serv_addr, socklen_t addrlen) { |
| 55 | return ::connect(sockfd, serv_addr, addrlen); |
| 56 | } |
| 57 | |
| 58 | int BAIDU_WEAK bthread_timed_connect( |
| 59 | int sockfd, const struct sockaddr* serv_addr, |
no outgoing calls