| 2578 | struct in_addr inaddr_any; |
| 2579 | inaddr_any.s_addr = htonl(INADDR_ANY); |
| 2580 | struct in6_addr inaddr6_any = IN6ADDR_ANY_INIT; |
| 2581 | fBound |= Bind(CService(inaddr6_any, GetListenPort()), BF_NONE, NetPermissionFlags::None); |
| 2582 | fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound ? BF_REPORT_ERROR : BF_NONE, NetPermissionFlags::None); |
| 2583 | } |