summaryrefslogtreecommitdiffstats
path: root/3rdparty/openpgm-svn-r1085/pgm/include/pgm/socket.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/openpgm-svn-r1085/pgm/include/pgm/socket.h')
-rw-r--r--3rdparty/openpgm-svn-r1085/pgm/include/pgm/socket.h170
1 files changed, 170 insertions, 0 deletions
diff --git a/3rdparty/openpgm-svn-r1085/pgm/include/pgm/socket.h b/3rdparty/openpgm-svn-r1085/pgm/include/pgm/socket.h
new file mode 100644
index 0000000..f3a2360
--- /dev/null
+++ b/3rdparty/openpgm-svn-r1085/pgm/include/pgm/socket.h
@@ -0,0 +1,170 @@
+/* vim:ts=8:sts=4:sw=4:noai:noexpandtab
+ *
+ * PGM socket.
+ *
+ * Copyright (c) 2006-2010 Miru Limited.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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 library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef __PGM_SOCKET_H__
+#define __PGM_SOCKET_H__
+
+typedef struct pgm_sock_t pgm_sock_t;
+struct pgm_sockaddr_t;
+struct pgm_addrinfo_t;
+struct pgm_fecinto_t;
+
+#ifdef CONFIG_HAVE_POLL
+# include <poll.h>
+#endif
+#ifdef CONFIG_HAVE_EPOLL
+# include <sys/epoll.h>
+#endif
+#ifndef _WIN32
+# include <sys/select.h>
+# include <sys/socket.h>
+#endif
+#include <pgm/types.h>
+#include <pgm/error.h>
+#include <pgm/msgv.h>
+#include <pgm/tsi.h>
+
+PGM_BEGIN_DECLS
+
+struct pgm_sockaddr_t {
+ uint16_t sa_port; /* data-destination port */
+ pgm_tsi_t sa_addr;
+};
+
+struct pgm_addrinfo_t {
+ sa_family_t ai_family;
+ uint32_t ai_recv_addrs_len;
+ struct group_source_req* restrict ai_recv_addrs;
+ uint32_t ai_send_addrs_len;
+ struct group_source_req* restrict ai_send_addrs;
+};
+
+struct pgm_interface_req_t {
+ uint32_t ir_interface;
+ uint32_t ir_scope_id;
+};
+
+struct pgm_fecinfo_t {
+ uint8_t block_size;
+ uint8_t proactive_packets;
+ uint8_t group_size;
+ bool ondemand_parity_enabled;
+ bool var_pktlen_enabled;
+};
+
+struct pgm_pgmccinfo_t {
+ uint32_t ack_bo_ivl;
+ uint32_t ack_c;
+ uint32_t ack_c_p;
+};
+
+/* socket options */
+enum {
+ PGM_RECV_SOCK,
+ PGM_REPAIR_SOCK,
+ PGM_PENDING_SOCK,
+ PGM_ACK_SOCK,
+ PGM_TIME_REMAIN,
+ PGM_RATE_REMAIN,
+ PGM_IP_ROUTER_ALERT,
+ PGM_MTU,
+ PGM_MULTICAST_LOOP,
+ PGM_MULTICAST_HOPS,
+ PGM_TOS,
+ PGM_SNDBUF,
+ PGM_RCVBUF,
+ PGM_AMBIENT_SPM,
+ PGM_HEARTBEAT_SPM,
+ PGM_TXW_SQNS,
+ PGM_TXW_SECS,
+ PGM_TXW_MAX_RTE,
+ PGM_PEER_EXPIRY,
+ PGM_SPMR_EXPIRY,
+ PGM_RXW_SQNS,
+ PGM_RXW_SECS,
+ PGM_RXW_MAX_RTE,
+ PGM_NAK_BO_IVL,
+ PGM_NAK_RPT_IVL,
+ PGM_NAK_RDATA_IVL,
+ PGM_NAK_DATA_RETRIES,
+ PGM_NAK_NCF_RETRIES,
+ PGM_USE_FEC,
+ PGM_USE_CR,
+ PGM_USE_PGMCC,
+ PGM_SEND_ONLY,
+ PGM_RECV_ONLY,
+ PGM_PASSIVE,
+ PGM_ABORT_ON_RESET,
+ PGM_NOBLOCK,
+ PGM_SEND_GROUP,
+ PGM_JOIN_GROUP,
+ PGM_LEAVE_GROUP,
+ PGM_BLOCK_SOURCE,
+ PGM_UNBLOCK_SOURCE,
+ PGM_JOIN_SOURCE_GROUP,
+ PGM_LEAVE_SOURCE_GROUP,
+ PGM_MSFILTER,
+ PGM_UDP_ENCAP_UCAST_PORT,
+ PGM_UDP_ENCAP_MCAST_PORT
+};
+
+/* IO status */
+enum {
+ PGM_IO_STATUS_ERROR, /* an error occurred */
+ PGM_IO_STATUS_NORMAL, /* success */
+ PGM_IO_STATUS_RESET, /* session reset */
+ PGM_IO_STATUS_FIN, /* session finished */
+ PGM_IO_STATUS_EOF, /* socket closed */
+ PGM_IO_STATUS_WOULD_BLOCK, /* resource temporarily unavailable */
+ PGM_IO_STATUS_RATE_LIMITED, /* would-block on rate limit, check timer */
+ PGM_IO_STATUS_TIMER_PENDING, /* would-block with pending timer */
+ PGM_IO_STATUS_CONGESTION /* would-block waiting on ACK or timeout */
+};
+
+bool pgm_socket (pgm_sock_t**restrict, const sa_family_t, const int, const int, pgm_error_t**restrict) PGM_GNUC_WARN_UNUSED_RESULT;
+bool pgm_bind (pgm_sock_t*restrict, const struct pgm_sockaddr_t*const restrict, const socklen_t, pgm_error_t**restrict) PGM_GNUC_WARN_UNUSED_RESULT;
+bool pgm_bind3 (pgm_sock_t*restrict, const struct pgm_sockaddr_t*const restrict, const socklen_t, const struct pgm_interface_req_t*const, const socklen_t, const struct pgm_interface_req_t*const, const socklen_t, pgm_error_t**restrict) PGM_GNUC_WARN_UNUSED_RESULT;
+bool pgm_connect (pgm_sock_t*restrict, pgm_error_t**restrict) PGM_GNUC_WARN_UNUSED_RESULT;
+bool pgm_close (pgm_sock_t*, bool);
+bool pgm_setsockopt (pgm_sock_t*const restrict, const int, const void*restrict, const socklen_t);
+bool pgm_getsockopt (pgm_sock_t*const restrict, const int, void*restrict, socklen_t*restrict);
+bool pgm_getaddrinfo (const char*restrict, const struct pgm_addrinfo_t*restrict, struct pgm_addrinfo_t**restrict, pgm_error_t**restrict);
+void pgm_freeaddrinfo (struct pgm_addrinfo_t*);
+int pgm_send (pgm_sock_t*const restrict, const void*restrict, const size_t, size_t*restrict);
+int pgm_sendv (pgm_sock_t*const restrict, const struct pgm_iovec*const restrict, const unsigned, const bool, size_t*restrict);
+int pgm_send_skbv (pgm_sock_t*const restrict, struct pgm_sk_buff_t**restrict, const unsigned, const bool, size_t*restrict);
+int pgm_recvmsg (pgm_sock_t*const restrict, struct pgm_msgv_t*const restrict, const int, size_t*restrict, pgm_error_t**restrict) PGM_GNUC_WARN_UNUSED_RESULT;
+int pgm_recvmsgv (pgm_sock_t*const restrict, struct pgm_msgv_t*const restrict, const size_t, const int, size_t*restrict, pgm_error_t**restrict) PGM_GNUC_WARN_UNUSED_RESULT;
+int pgm_recv (pgm_sock_t*const restrict, void*restrict, const size_t, const int, size_t*const restrict, pgm_error_t**restrict) PGM_GNUC_WARN_UNUSED_RESULT;
+int pgm_recvfrom (pgm_sock_t*const restrict, void*restrict, const size_t, const int, size_t*restrict, struct pgm_sockaddr_t*restrict, socklen_t*restrict, pgm_error_t**restrict) PGM_GNUC_WARN_UNUSED_RESULT;
+
+bool pgm_getsockname (pgm_sock_t*const restrict, struct pgm_sockaddr_t*restrict, socklen_t*restrict);
+int pgm_select_info (pgm_sock_t*const restrict, fd_set*const restrict, fd_set*const restrict, int*const restrict);
+#ifdef CONFIG_HAVE_POLL
+int pgm_poll_info (pgm_sock_t*const restrict, struct pollfd*const restrict, int*const restrict, const int);
+#endif
+#ifdef CONFIG_HAVE_EPOLL
+int pgm_epoll_ctl (pgm_sock_t*const, const int, const int, const int);
+#endif
+
+PGM_END_DECLS
+
+#endif /* __PGM_SOCKET_H__ */