Changeset 413:d9005d8d4380 in verona
- Timestamp:
- Feb 2, 2012 2:39:41 PM (16 months ago)
- Branch:
- default
- Children:
- 414:97f2bcd97334, 424:9a3a3ec89166
- Files:
-
- 2 edited
-
phapi/phapi.c (modified) (3 diffs)
-
phtest/phtests_core.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
phapi/phapi.c
r412 r413 178 178 static void ph_connection_lost(const char *host, int port); 179 179 static int ph_is_connection_lost; 180 static char* ph_is_connection_lost_host; 181 static int ph_is_connection_lost_port; 180 182 181 183 void ph_message_progress(eXosip_event_t *je); … … 6812 6814 { 6813 6815 ph_is_connection_lost = 1; 6816 ph_is_connection_lost_host = host; 6817 ph_is_connection_lost_port = port; 6814 6818 } 6815 6819 … … 6957 6961 if (ph_is_connection_lost) 6958 6962 { 6959 phcb->connectionLost( "", 0);6963 phcb->connectionLost(ph_is_connection_lost_host, ph_is_connection_lost_port); 6960 6964 ph_is_connection_lost = 0; 6961 6965 } -
phtest/phtests_core.cpp
r209 r413 94 94 } 95 95 96 virtual void onPhLogCsl( const char *msg)96 virtual void onPhLogCsl(int level, const char *msg) 97 97 { 98 98 DBG_LOG("csl log [%s]", msg);
Note: See TracChangeset
for help on using the changeset viewer.
