Lines Matching refs:ConnectionInfo

129 class ConnectionInfo : public std::enable_shared_from_this<ConnectionInfo>  class
170 std::bind_front(&ConnectionInfo::afterResolve, in doResolve()
174 void afterResolve(const std::shared_ptr<ConnectionInfo>& /*self*/, in afterResolve() argument
195 std::bind_front(&ConnectionInfo::afterConnect, this, in afterResolve()
199 void afterConnect(const std::shared_ptr<ConnectionInfo>& /*self*/, in afterConnect() argument
243 std::bind_front(&ConnectionInfo::afterSslHandshake, this, in doSslHandshake()
247 void afterSslHandshake(const std::shared_ptr<ConnectionInfo>& /*self*/, in afterSslHandshake() argument
284 std::bind_front(&ConnectionInfo::afterWrite, this, in sendMessage()
291 std::bind_front(&ConnectionInfo::afterWrite, this, in sendMessage()
296 void afterWrite(const std::shared_ptr<ConnectionInfo>& /*self*/, in afterWrite() argument
337 std::bind_front(&ConnectionInfo::afterRead, this, in recvMessage()
344 std::bind_front(&ConnectionInfo::afterRead, this, in recvMessage()
349 void afterRead(const std::shared_ptr<ConnectionInfo>& /*self*/, in afterRead() argument
419 static void onTimeout(const std::weak_ptr<ConnectionInfo>& weakSelf, in onTimeout()
434 std::shared_ptr<ConnectionInfo> self = weakSelf.lock(); in onTimeout()
477 timer.async_wait(std::bind_front(&ConnectionInfo::onTimerDone, this, in waitAndRetry()
481 void onTimerDone(const std::shared_ptr<ConnectionInfo>& /*self*/, in onTimerDone() argument
547 std::bind_front(&ConnectionInfo::afterSslShutdown, this, in doClose()
551 void afterSslShutdown(const std::shared_ptr<ConnectionInfo>& /*self*/, in afterSslShutdown() argument
633 explicit ConnectionInfo( in ConnectionInfo() function in crow::ConnectionInfo
652 std::vector<std::shared_ptr<ConnectionInfo>> connections;
659 void setConnProps(ConnectionInfo& conn) in setConnProps()
818 std::shared_ptr<ConnectionInfo>& addConnection() in addConnection()
822 auto& ret = connections.emplace_back(std::make_shared<ConnectionInfo>( in addConnection()