mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 12:59:39 +08:00
15 lines
255 B
C
15 lines
255 B
C
|
#pragma once
|
||
|
|
||
|
class check_sync
|
||
|
{
|
||
|
public:
|
||
|
check_sync(void);
|
||
|
~check_sync(void);
|
||
|
|
||
|
void sio_check_pop3(acl::check_client& checker,
|
||
|
acl::socket_stream& conn);
|
||
|
void sio_check_http(acl::check_client& checker,
|
||
|
acl::socket_stream& conn);
|
||
|
};
|
||
|
|