add debug logs in DeletePCPMap

This commit is contained in:
Thomas Bernard 2022-06-19 19:38:36 +02:00
parent 0cc037f8b0
commit 16366f5db4
1 changed files with 5 additions and 1 deletions

View File

@ -1105,6 +1105,8 @@ static void DeletePCPMap(pcp_info_t *pcp_msg_info)
int uid = -1; int uid = -1;
#endif /* ENABLE_UPNPPINHOLE */ #endif /* ENABLE_UPNPPINHOLE */
syslog(LOG_DEBUG, "is_fw=%d addr=%s iport=%hu proto=%d",
pcp_msg_info->is_fw, pcp_msg_info->mapped_str, iport, (int)proto);
/* iterate through all rules and delete the requested ones */ /* iterate through all rules and delete the requested ones */
for (index = 0 ; for (index = 0 ;
(!pcp_msg_info->is_fw && (!pcp_msg_info->is_fw &&
@ -1124,7 +1126,8 @@ static void DeletePCPMap(pcp_info_t *pcp_msg_info)
&timestamp, NULL) >= 0) &timestamp, NULL) >= 0)
#endif /* ENABLE_UPNPPINHOLE */ #endif /* ENABLE_UPNPPINHOLE */
; ;
index++) index++) {
syslog(LOG_DEBUG, "%d: %s %hu %d", index, iaddr2, iport2, proto2);
if(0 == strcmp(iaddr2, pcp_msg_info->mapped_str) if(0 == strcmp(iaddr2, pcp_msg_info->mapped_str)
&& (proto2==proto) && (proto2==proto)
&& ((iport2==iport) || (iport==0))) { && ((iport2==iport) || (iport==0))) {
@ -1143,6 +1146,7 @@ static void DeletePCPMap(pcp_info_t *pcp_msg_info)
} }
break; break;
} }
}
if (r >= 0) { if (r >= 0) {
syslog(LOG_INFO, "PCP: %s port %hu mapping removed", syslog(LOG_INFO, "PCP: %s port %hu mapping removed",
proto2==IPPROTO_TCP?"TCP":"UDP", eport2); proto2==IPPROTO_TCP?"TCP":"UDP", eport2);