blob: 8ba9c6a774ba42cc7fd12f97df8e73a53cd80c13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <axutil_env.h>
#include "tcpmon_entry.h"
#include "tcpmon_session_local.h"
typedef struct tcpmon_entry_request_data
{
const axutil_env_t *env;
int socket;
tcpmon_session_t *session;
}
tcpmon_entry_request_data_t;
void *AXIS2_CALL
tcpmon_entry_new_entry_funct(
axutil_thread_t * thd,
void *data);
|