FACT++  1.0
void tcp_connection::AsyncWait ( ba::deadline_timer &  timer,
int  seconds,
void(tcp_connection::*)(const bs::error_code &)  handler 
)
inline

Definition at line 79 of file fad.cc.

81  {
82  timer.expires_from_now(boost::posix_time::milliseconds(seconds));
83  timer.async_wait(boost::bind(handler, shared_from_this(), dummy::error));
84  }
static void handler(int conn_id, char *packet, int size, int status)
Definition: webServer.c:635