forked from zeromq/libzmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream_listener_base.hpp
61 lines (45 loc) · 1.43 KB
/
stream_listener_base.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* SPDX-License-Identifier: MPL-2.0 */
#ifndef __ZMQ_STREAM_LISTENER_BASE_HPP_INCLUDED__
#define __ZMQ_STREAM_LISTENER_BASE_HPP_INCLUDED__
#include <string>
#include "fd.hpp"
#include "own.hpp"
#include "stdint.hpp"
#include "io_object.hpp"
#include "address.hpp"
namespace zmq
{
class io_thread_t;
class socket_base_t;
class stream_listener_base_t : public own_t, public io_object_t
{
public:
stream_listener_base_t (zmq::io_thread_t *io_thread_,
zmq::socket_base_t *socket_,
const options_t &options_);
~stream_listener_base_t () ZMQ_OVERRIDE;
// Get the bound address for use with wildcards
int get_local_address (std::string &addr_) const;
protected:
virtual std::string get_socket_name (fd_t fd_,
socket_end_t socket_end_) const = 0;
private:
// Handlers for incoming commands.
void process_plug () ZMQ_FINAL;
void process_term (int linger_) ZMQ_FINAL;
protected:
// Close the listening socket.
virtual int close ();
virtual void create_engine (fd_t fd);
// Underlying socket.
fd_t _s;
// Handle corresponding to the listening socket.
handle_t _handle;
// Socket the listener belongs to.
zmq::socket_base_t *_socket;
// String representation of endpoint to bind to
std::string _endpoint;
ZMQ_NON_COPYABLE_NOR_MOVABLE (stream_listener_base_t)
};
}
#endif