tdlight/tdnet/td/net/TcpListener.h
2023-08-05 16:09:36 +03:00

39 lines
933 B
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once
#include "td/actor/actor.h"
#include "td/utils/common.h"
#include "td/utils/port/ServerSocketFd.h"
#include "td/utils/port/SocketFd.h"
#include "td/utils/Slice.h"
namespace td {
class TcpListener final : public Actor {
public:
class Callback : public Actor {
public:
virtual void accept(SocketFd fd) = 0;
};
TcpListener(int port, ActorShared<Callback> callback, Slice server_address = Slice("0.0.0.0"));
void hangup() final;
private:
int port_;
ServerSocketFd server_fd_;
ActorShared<Callback> callback_;
const string server_address_;
void start_up() final;
void tear_down() final;
void loop() final;
};
} // namespace td