| 1234567891011121314151617 |
- #pragma once
- #include "ClientContext.h"
- class CLNContext :
- public CClientContext
- {
- public:
- CLNContext();
- ~CLNContext();
- public:
- void addresses(const ACE_INET_Addr& remote_address, const ACE_INET_Addr& local_address) override;
- void handle_time_out(const ACE_Time_Value& tv, const void* act = 0) override;
- };
|