use LOG_INFO instead of LOG_ERR for PCP PEER and MAP success
fixes #158
This commit is contained in:
parent
92cc93f6f8
commit
be70a04c66
|
@ -799,7 +799,8 @@ static void CreatePCPPeer(pcp_info_t *pcp_msg_info)
|
||||||
}
|
}
|
||||||
/* TODO: add upnp function for PI */
|
/* TODO: add upnp function for PI */
|
||||||
pcp_msg_info->result_code = r;
|
pcp_msg_info->result_code = r;
|
||||||
syslog(LOG_ERR, "PCP PEER: %s peer mapping %s %s:%hu(%hu)->%s:%hu '%s'",
|
syslog(r == PCP_SUCCESS ? LOG_INFO : LOG_ERR,
|
||||||
|
"PCP PEER: %s peer mapping %s %s:%hu(%hu)->%s:%hu '%s'",
|
||||||
r == PCP_SUCCESS ? "added" : "failed to add",
|
r == PCP_SUCCESS ? "added" : "failed to add",
|
||||||
(pcp_msg_info->protocol==IPPROTO_TCP)?"TCP":"UDP",
|
(pcp_msg_info->protocol==IPPROTO_TCP)?"TCP":"UDP",
|
||||||
pcp_msg_info->mapped_str,
|
pcp_msg_info->mapped_str,
|
||||||
|
@ -1043,7 +1044,8 @@ static void CreatePCPMap(pcp_info_t *pcp_msg_info)
|
||||||
else
|
else
|
||||||
r = CreatePCPMap_NAT(pcp_msg_info);
|
r = CreatePCPMap_NAT(pcp_msg_info);
|
||||||
pcp_msg_info->result_code = r;
|
pcp_msg_info->result_code = r;
|
||||||
syslog(LOG_ERR, "PCP MAP: %s mapping %s %hu->%s:%hu '%s'",
|
syslog(r == PCP_SUCCESS ? LOG_INFO : LOG_ERR,
|
||||||
|
"PCP MAP: %s mapping %s %hu->%s:%hu '%s'",
|
||||||
r == PCP_SUCCESS ? "added" : "failed to add",
|
r == PCP_SUCCESS ? "added" : "failed to add",
|
||||||
(pcp_msg_info->protocol==IPPROTO_TCP)?"TCP":"UDP",
|
(pcp_msg_info->protocol==IPPROTO_TCP)?"TCP":"UDP",
|
||||||
pcp_msg_info->ext_port,
|
pcp_msg_info->ext_port,
|
||||||
|
|
Loading…
Reference in New Issue