/** The socket node-type for Layer 2, 3, 4 BSD-style sockets * * @file * @author Steffen Vogel * @copyright 2014-2021, Institute for Automation of Complex Power Systems, EONERC * @license GNU General Public License (version 3) * * VILLASnode * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . *********************************************************************************/ #pragma once #include #include #include namespace villas { namespace node { /* Forward declarations */ class NodeCompat; /** The maximum length of a packet which contains stuct msg. */ #define SOCKET_INITIAL_BUFFER_LEN (64*1024) struct Socket { int sd; /**< The socket descriptor */ int verify_source; /**< Verify the source address of incoming packets against socket::remote. */ enum SocketLayer layer; /**< The OSI / IP layer which should be used for this socket */ Format *formatter; /* Multicast options */ struct multicast { int enabled; /**< Is multicast enabled? */ unsigned char loop; /** Loopback multicast packets to local host? */ unsigned char ttl; /**< The time to live for multicast packets. */ struct ip_mreq mreq; /**< A multicast group to join. */ } multicast; struct { char *buf; /**< Buffer for receiving messages */ size_t buflen; union sockaddr_union saddr; /**< Remote address of the socket */ } in, out; }; int socket_type_start(SuperNode *sn); int socket_type_stop(); int socket_init(NodeCompat *n); int socket_destroy(NodeCompat *n); int socket_start(NodeCompat *n); int socket_check(NodeCompat *n); int socket_stop(NodeCompat *n); int socket_reverse(NodeCompat *n); int socket_fds(NodeCompat *n, int fds[]); int socket_write(NodeCompat *n, struct Sample * const smps[], unsigned cnt); int socket_read(NodeCompat *n, struct Sample * const smps[], unsigned cnt); int socket_parse(NodeCompat *n, json_t *json); char * socket_print(NodeCompat *n); } /* namespace node */ } /* namespace villas */