blob: eee9cc6ca7455d53e44a4527a5275bcc01ef9829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <tcpmon_session.h>
#include <tcpmon_entry.h>
axis2_status_t tcpmon_session_add_new_entry(
tcpmon_session_t * session,
const axutil_env_t * env,
tcpmon_entry_t * entry);
TCPMON_SESSION_TRANS_ERROR_FUNCT tcpmon_session_get_on_trans_fault(
tcpmon_session_t * session,
const axutil_env_t * env);
TCPMON_SESSION_NEW_ENTRY_FUNCT tcpmon_session_get_on_new_entry(
tcpmon_session_t * session,
const axutil_env_t * env);
|