stupidity fixes
This commit is contained in:
parent
6cd3964de7
commit
32f8c78b55
2 changed files with 8 additions and 8 deletions
|
@ -205,25 +205,25 @@ static void start_auth(const char *cid, const char *l_ip, const char *l_port, co
|
||||||
|
|
||||||
rb_strlcpy(auth->l_ip, l_ip, sizeof(auth->l_ip));
|
rb_strlcpy(auth->l_ip, l_ip, sizeof(auth->l_ip));
|
||||||
auth->l_port = (uint16_t)atoi(l_port); /* should be safe */
|
auth->l_port = (uint16_t)atoi(l_port); /* should be safe */
|
||||||
(void) rb_inet_pton_sock(l_ip, (struct sockaddr *)&auth->l_addr, sizeof(auth->l_addr));
|
(void) rb_inet_pton_sock(l_ip, (struct sockaddr *)&auth->l_addr);
|
||||||
|
|
||||||
rb_strlcpy(auth->c_ip, c_ip, sizeof(auth->c_ip));
|
rb_strlcpy(auth->c_ip, c_ip, sizeof(auth->c_ip));
|
||||||
auth->c_port = (uint16_t)atoi(c_port);
|
auth->c_port = (uint16_t)atoi(c_port);
|
||||||
(void) rb_inet_pton_sock(c_ip, (struct sockaddr *)&auth->c_addr, sizeof(auth->c_addr));
|
(void) rb_inet_pton_sock(c_ip, (struct sockaddr *)&auth->c_addr);
|
||||||
|
|
||||||
#ifdef RB_IPV6
|
#ifdef RB_IPV6
|
||||||
if(GET_SS_FAMILY(&auth->l_addr) == AF_INET6)
|
if(GET_SS_FAMILY(&auth->l_addr) == AF_INET6)
|
||||||
((struct sockaddr_in6 *)&l_addr)->sin6_port = htons(auth->l_port);
|
((struct sockaddr_in6 *)&auth->l_addr)->sin6_port = htons(auth->l_port);
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
((struct sockaddr_in *)&l_addr)->sin_port = htons(auth->l_port);
|
((struct sockaddr_in *)&auth->l_addr)->sin_port = htons(auth->l_port);
|
||||||
|
|
||||||
#ifdef RB_IPV6
|
#ifdef RB_IPV6
|
||||||
if(GET_SS_FAMILY(&auth->c_addr) == AF_INET6)
|
if(GET_SS_FAMILY(&auth->c_addr) == AF_INET6)
|
||||||
((struct sockaddr_in6 *)&c_addr)->sin6_port = htons(auth->c_port);
|
((struct sockaddr_in6 *)&auth->c_addr)->sin6_port = htons(auth->c_port);
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
((struct sockaddr_in *)&c_addr)->sin_port = htons(auth->c_port);
|
((struct sockaddr_in *)&auth->c_addr)->sin_port = htons(auth->c_port);
|
||||||
|
|
||||||
rb_dictionary_add(auth_clients, RB_UINT_TO_POINTER(auth->cid), auth);
|
rb_dictionary_add(auth_clients, RB_UINT_TO_POINTER(auth->cid), auth);
|
||||||
|
|
||||||
|
|
|
@ -97,8 +97,8 @@ bool ident_start(struct auth_client *auth)
|
||||||
query->F = F;
|
query->F = F;
|
||||||
|
|
||||||
/* Build sockaddr_storages for rb_connect_tcp below */
|
/* Build sockaddr_storages for rb_connect_tcp below */
|
||||||
memcpy(&l_addr, auth->l_addr, sizeof(l_addr));
|
memcpy(&l_addr, &auth->l_addr, sizeof(l_addr));
|
||||||
memcpy(&c_addr, auth->c_addr, sizeof(c_addr));
|
memcpy(&c_addr, &auth->c_addr, sizeof(c_addr));
|
||||||
|
|
||||||
/* Set the ports correctly */
|
/* Set the ports correctly */
|
||||||
#ifdef RB_IPV6
|
#ifdef RB_IPV6
|
||||||
|
|
Loading…
Reference in a new issue