Commit 9c549958 authored by captainwong's avatar captainwong

find_clients

parent 494c3f92
......@@ -480,6 +480,20 @@ void simple_libevent_clients::exit()
impl = nullptr;
}
simple_libevent_clients::BaseClient* simple_libevent_clients::find_client(int fd)
{
std::lock_guard<std::mutex> lg(mutex_);
if (!impl) { return nullptr; }
for (int i = 0; i < threadNum_; i++) {
std::lock_guard<std::mutex> lg2(impl->contexts[i]->mutex);
auto iter = impl->contexts[i]->clients.find(fd);
if (iter != impl->contexts[i]->clients.end()) {
return iter->second;
}
}
return nullptr;
}
void simple_libevent_clients::BaseClient::set_timer(OnTimerCallback cb, void* user_data, int seconds)
{
......
......@@ -87,7 +87,7 @@ public:
bool connect(const std::string& ip, uint16_t port, std::string& msg);
void exit();
BaseClient* find_client(int fd);
protected:
......
......@@ -90,6 +90,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "net", "net", "{FEAECF59-4F3
..\jlib\net\resolve_fastest_ip.h = ..\jlib\net\resolve_fastest_ip.h
..\jlib\net\simple_libevent_client.cpp = ..\jlib\net\simple_libevent_client.cpp
..\jlib\net\simple_libevent_client.h = ..\jlib\net\simple_libevent_client.h
..\jlib\net\simple_libevent_clients.cpp = ..\jlib\net\simple_libevent_clients.cpp
..\jlib\net\simple_libevent_clients.h = ..\jlib\net\simple_libevent_clients.h
..\jlib\net\simple_libevent_micros.h = ..\jlib\net\simple_libevent_micros.h
..\jlib\net\simple_libevent_server.cpp = ..\jlib\net\simple_libevent_server.cpp
..\jlib\net\simple_libevent_server.h = ..\jlib\net\simple_libevent_server.h
EndProjectSection
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment