[GTP/PFCP] Remove SO_REUSEADDR in UDP (#986,#992)

In case of IP conflict, it has been modified to automatically shut down with an error message so that users can easily recognize it.
This commit is contained in:
Sukchan Lee 2021-05-15 20:37:15 +09:00
parent f861919507
commit 3df75e37df
1 changed files with 0 additions and 4 deletions

View File

@ -35,7 +35,6 @@ ogs_sock_t *ogs_udp_socket(int family, ogs_socknode_t *node)
ogs_sock_t *ogs_udp_server(ogs_socknode_t *node)
{
int rv;
ogs_sock_t *new = NULL;
ogs_sockaddr_t *addr;
char buf[OGS_ADDRSTRLEN];
@ -47,9 +46,6 @@ ogs_sock_t *ogs_udp_server(ogs_socknode_t *node)
while (addr) {
new = ogs_udp_socket(addr->ogs_sa_family, node);
if (new) {
rv = ogs_listen_reusable(new->fd);
ogs_assert(rv == OGS_OK);
if (ogs_sock_bind(new, addr) == OGS_OK) {
ogs_debug("udp_server() [%s]:%d",
OGS_ADDR(addr, buf), OGS_PORT(addr));