mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
da31917f4f
Relicense permission collected from all relevant authors as tallied at: https://github.com/rlenferink/libzmq-relicense/blob/master/checklist.md The relicense grants are collected under RELICENSE/ and will be moved to the above repository in a later commit. Fixes https://github.com/zeromq/libzmq/issues/2376
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
/* SPDX-License-Identifier: MPL-2.0 */
|
|
|
|
#ifndef __ZMQ_VMCI_LISTENER_HPP_INCLUDED__
|
|
#define __ZMQ_VMCI_LISTENER_HPP_INCLUDED__
|
|
|
|
#include "platform.hpp"
|
|
|
|
#if defined ZMQ_HAVE_VMCI
|
|
|
|
#include <string>
|
|
|
|
#include "fd.hpp"
|
|
#include "vmci_address.hpp"
|
|
#include "stream_listener_base.hpp"
|
|
|
|
namespace zmq
|
|
{
|
|
class vmci_listener_t ZMQ_FINAL : public stream_listener_base_t
|
|
{
|
|
public:
|
|
vmci_listener_t (zmq::io_thread_t *io_thread_,
|
|
zmq::socket_base_t *socket_,
|
|
const options_t &options_);
|
|
|
|
// Set address to listen on.
|
|
int set_local_address (const char *addr_);
|
|
|
|
protected:
|
|
std::string get_socket_name (fd_t fd_, socket_end_t socket_end_) const;
|
|
|
|
private:
|
|
// Handlers for I/O events.
|
|
void in_event ();
|
|
|
|
// Accept the new connection. Returns the file descriptor of the
|
|
// newly created connection. The function may return retired_fd
|
|
// if the connection was dropped while waiting in the listen backlog.
|
|
fd_t accept ();
|
|
|
|
int create_socket (const char *addr_);
|
|
|
|
// Address to listen on.
|
|
vmci_address_t _address;
|
|
|
|
ZMQ_NON_COPYABLE_NOR_MOVABLE (vmci_listener_t)
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|