Wed Nov 26 12:38:03 CST 2008 Pekka Pessi <first.last@nokia.com>

* tport.c: log real transport name by tport_vsend()



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10823 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-12-16 20:22:09 +00:00
parent b7eefbabe5
commit 3294718a97
2 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
Tue Dec 16 14:15:24 CST 2008
Tue Dec 16 14:21:26 CST 2008

View File

@ -3490,10 +3490,10 @@ ssize_t tport_vsend(tport_t *self,
if (tpn == NULL || tport_is_connection_oriented(self))
tpn = self->tp_name;
SU_DEBUG_7(("%s(%p): "MOD_ZU" bytes of "MOD_ZU" to %s/%s:%s%s\n",
"tport_vsend", (void *)self, n, m, tpn->tpn_proto, tpn->tpn_host,
tpn->tpn_port,
SU_DEBUG_7(("%s(%p): "MOD_ZU" bytes of "MOD_ZU" to %s/%s:%s%s\n",
"tport_vsend", (void *)self, n, m,
self->tp_name->tpn_proto, tpn->tpn_host, tpn->tpn_port,
(ai->ai_flags & TP_AI_COMPRESSED) ? ";comp=sigcomp" : ""));
}