/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Kevin DuBois */ #ifndef ANBOX_NETWORK_FD_SOCKET_TRANSMISSION_H_ #define ANBOX_NETWORK_FD_SOCKET_TRANSMISSION_H_ #include "anbox/common/fd.h" #include #include #include namespace anbox { struct socket_error : std::system_error { socket_error(std::string const& message); }; struct socket_disconnected_error : std::system_error { socket_disconnected_error(std::string const& message); }; struct fd_reception_error : std::runtime_error { fd_reception_error(std::string const& message); }; bool socket_error_is_transient(int error_code); void send_fds(Fd const& socket, std::vector const& fd); void receive_data(Fd const& socket, void* buffer, size_t bytes_requested, std::vector& fds); } #endif