Apache Mesos
|
#include <process/address.hpp>
#include <stout/net.hpp>
#include <stout/try.hpp>
#include <stout/os/socket.hpp>
Go to the source code of this file.
Namespaces | |
process | |
process::network | |
Functions | |
Try< int_fd > | process::network::accept (int_fd s) |
Try< Nothing > | process::network::bind (int_fd s, const Address &address) |
Try< Nothing, SocketError > | process::network::connect (int_fd s, const Address &address) |
Try< Address > | process::network::address (int_fd s) |
Returns the Address with the assigned ip and assigned port. More... | |
Try< Address > | process::network::peer (int_fd s) |
Returns the peer's Address for the accepted or connected socket. More... | |