1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-14 15:23:24 +00:00

UDP-Lite (UDPlite) support

This commit is contained in:
Gerhard Rieger 2023-11-11 17:18:06 +01:00
parent a846b94e6c
commit 2cfc39e9e5
21 changed files with 833 additions and 71 deletions

30
xio-udplite.h Normal file
View file

@ -0,0 +1,30 @@
/* source: xio-udplite.h */
/* Copyright Gerhard Rieger and contributors (see file CHANGES) */
/* Published under the GNU General Public License V.2, see file COPYING */
#ifndef __xio_udplite_h_included
#define __xio_udplite_h_included 1
extern const struct addrdesc xioaddr_udplite_connect;
extern const struct addrdesc xioaddr_udplite_listen;
extern const struct addrdesc xioaddr_udplite_sendto;
extern const struct addrdesc xioaddr_udplite_datagram;
extern const struct addrdesc xioaddr_udplite_recvfrom;
extern const struct addrdesc xioaddr_udplite_recv;
extern const struct addrdesc xioaddr_udplite4_connect;
extern const struct addrdesc xioaddr_udplite4_listen;
extern const struct addrdesc xioaddr_udplite4_sendto;
extern const struct addrdesc xioaddr_udplite4_datagram;
extern const struct addrdesc xioaddr_udplite4_recvfrom;
extern const struct addrdesc xioaddr_udplite4_recv;
extern const struct addrdesc xioaddr_udplite6_connect;
extern const struct addrdesc xioaddr_udplite6_listen;
extern const struct addrdesc xioaddr_udplite6_sendto;
extern const struct addrdesc xioaddr_udplite6_datagram;
extern const struct addrdesc xioaddr_udplite6_recvfrom;
extern const struct addrdesc xioaddr_udplite6_recv;
extern const struct optdesc xioopt_udplite_send_cscov;
extern const struct optdesc xioopt_udplite_recv_cscov;
#endif /* !defined(__xio_udplite_h_included) */