m_webirc: use rb_inet_ntop_sock to populate sockhost
This commit is contained in:
parent
89bb7d65fb
commit
fdfe62e7cc
1 changed files with 3 additions and 12 deletions
|
@ -81,8 +81,7 @@ mr_webirc(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sourc
|
||||||
struct rb_sockaddr_storage addr;
|
struct rb_sockaddr_storage addr;
|
||||||
|
|
||||||
if ((!strchr(parv[4], '.') && !strchr(parv[4], ':')) ||
|
if ((!strchr(parv[4], '.') && !strchr(parv[4], ':')) ||
|
||||||
strlen(parv[4]) + (*parv[4] == ':') >=
|
strlen(parv[4]) >= sizeof(source_p->sockhost))
|
||||||
sizeof(source_p->sockhost))
|
|
||||||
{
|
{
|
||||||
sendto_one(source_p, "NOTICE * :Invalid IP");
|
sendto_one(source_p, "NOTICE * :Invalid IP");
|
||||||
return;
|
return;
|
||||||
|
@ -126,16 +125,6 @@ mr_webirc(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sourc
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*parv[4] == ':')
|
|
||||||
{
|
|
||||||
source_p->sockhost[0] = '0';
|
|
||||||
rb_strlcpy(source_p->sockhost + 1, parv[4],
|
|
||||||
sizeof(source_p->sockhost) - 1);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
rb_strlcpy(source_p->sockhost, parv[4],
|
|
||||||
sizeof(source_p->sockhost));
|
|
||||||
|
|
||||||
if(strlen(parv[3]) <= HOSTLEN)
|
if(strlen(parv[3]) <= HOSTLEN)
|
||||||
rb_strlcpy(source_p->host, parv[3], sizeof(source_p->host));
|
rb_strlcpy(source_p->host, parv[3], sizeof(source_p->host));
|
||||||
else
|
else
|
||||||
|
@ -143,6 +132,8 @@ mr_webirc(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sourc
|
||||||
|
|
||||||
source_p->localClient->ip = addr;
|
source_p->localClient->ip = addr;
|
||||||
|
|
||||||
|
rb_inet_ntop_sock((struct sockaddr *)&source_p->localClient->ip, source_p->sockhost, sizeof(source_p->sockhost));
|
||||||
|
|
||||||
/* Check dlines now, klines will be checked on registration */
|
/* Check dlines now, klines will be checked on registration */
|
||||||
if((aconf = find_dline((struct sockaddr *)&source_p->localClient->ip,
|
if((aconf = find_dline((struct sockaddr *)&source_p->localClient->ip,
|
||||||
GET_SS_FAMILY(&source_p->localClient->ip))))
|
GET_SS_FAMILY(&source_p->localClient->ip))))
|
||||||
|
|
Loading…
Reference in a new issue