mirror of
https://frontier.innolan.net/rainlance/amiga-ntimed.git
synced 2026-05-03 07:19:52 +00:00
Fix IPv6 by wrapping UDP in a struct.
This commit is contained in:
@@ -49,7 +49,6 @@
|
|||||||
|
|
||||||
#include "ntimed.h"
|
#include "ntimed.h"
|
||||||
|
|
||||||
struct combine_delta;
|
|
||||||
|
|
||||||
struct cd_stat {
|
struct cd_stat {
|
||||||
double x;
|
double x;
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ main_client(int argc, char *const *argv)
|
|||||||
struct ntp_peerset *npl;
|
struct ntp_peerset *npl;
|
||||||
struct todolist *tdl;
|
struct todolist *tdl;
|
||||||
struct combine_delta *cd;
|
struct combine_delta *cd;
|
||||||
int fd;
|
struct udp_socket *usc;
|
||||||
int npeer = 0;
|
int npeer = 0;
|
||||||
|
|
||||||
setbuf(stdout, NULL);
|
setbuf(stdout, NULL);
|
||||||
@@ -96,8 +96,8 @@ main_client(int argc, char *const *argv)
|
|||||||
|
|
||||||
Param_Report(NULL, OCX_TRACE);
|
Param_Report(NULL, OCX_TRACE);
|
||||||
|
|
||||||
fd = UdpTimedSocket(NULL, AF_INET);
|
usc = UdpTimedSocket(NULL);
|
||||||
if (fd < 0)
|
if (usc == NULL)
|
||||||
Fail(NULL, errno, "Could not open UDP socket");
|
Fail(NULL, errno, "Could not open UDP socket");
|
||||||
|
|
||||||
cd = CD_New();
|
cd = CD_New();
|
||||||
@@ -107,7 +107,7 @@ main_client(int argc, char *const *argv)
|
|||||||
np->combiner = CD_AddSource(cd, np->hostname, np->ip);
|
np->combiner = CD_AddSource(cd, np->hostname, np->ip);
|
||||||
}
|
}
|
||||||
|
|
||||||
NTP_PeerSet_Poll(NULL, npl, fd, tdl);
|
NTP_PeerSet_Poll(NULL, npl, usc, tdl);
|
||||||
|
|
||||||
(void)TODO_Run(NULL, tdl);
|
(void)TODO_Run(NULL, tdl);
|
||||||
|
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
#include "ntp.h"
|
#include "ntp.h"
|
||||||
#include "udp.h"
|
#include "udp.h"
|
||||||
|
|
||||||
static int fd;
|
static struct udp_socket *usc;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
mps_filter(struct ocx *ocx, const struct ntp_peer *np)
|
mps_filter(struct ocx *ocx, const struct ntp_peer *np)
|
||||||
@@ -61,7 +61,7 @@ mps_mon(struct ocx *ocx, struct todolist *tdl, void *priv)
|
|||||||
(void)ocx;
|
(void)ocx;
|
||||||
(void)tdl;
|
(void)tdl;
|
||||||
CAST_OBJ_NOTNULL(np, priv, NTP_PEER_MAGIC);
|
CAST_OBJ_NOTNULL(np, priv, NTP_PEER_MAGIC);
|
||||||
i = NTP_Peer_Poll(ocx, fd, np, 0.2);
|
i = NTP_Peer_Poll(ocx, usc, np, 0.2);
|
||||||
if (i == 1) {
|
if (i == 1) {
|
||||||
NTP_Tool_Format(buf, sizeof buf, np->rx_pkt);
|
NTP_Tool_Format(buf, sizeof buf, np->rx_pkt);
|
||||||
Put(ocx, OCX_TRACE,
|
Put(ocx, OCX_TRACE,
|
||||||
@@ -146,15 +146,15 @@ main_poll_server(int argc, char *const *argv)
|
|||||||
Put(NULL, OCX_TRACE,
|
Put(NULL, OCX_TRACE,
|
||||||
"# Monitor %s %s\n", mon->hostname, mon->ip);
|
"# Monitor %s %s\n", mon->hostname, mon->ip);
|
||||||
|
|
||||||
fd = UdpTimedSocket(NULL, AF_INET);
|
usc = UdpTimedSocket(NULL);
|
||||||
assert(fd >= 0);
|
assert(usc != NULL);
|
||||||
|
|
||||||
TODO_ScheduleRel(tdl, mps_end, NULL, duration, 0, "End task");
|
TODO_ScheduleRel(tdl, mps_end, NULL, duration, 0, "End task");
|
||||||
|
|
||||||
if (mon != NULL)
|
if (mon != NULL)
|
||||||
TODO_ScheduleRel(tdl, mps_mon, mon, 0, 32, "Monitor");
|
TODO_ScheduleRel(tdl, mps_mon, mon, 0, 32, "Monitor");
|
||||||
|
|
||||||
NTP_PeerSet_Poll(NULL, npl, fd, tdl);
|
NTP_PeerSet_Poll(NULL, npl, usc, tdl);
|
||||||
(void)TODO_Run(NULL, tdl);
|
(void)TODO_Run(NULL, tdl);
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
|
|||||||
2
ntimed.h
2
ntimed.h
@@ -38,6 +38,7 @@
|
|||||||
#include "ntimed_tricks.h"
|
#include "ntimed_tricks.h"
|
||||||
|
|
||||||
struct todolist;
|
struct todolist;
|
||||||
|
struct udp_socket;
|
||||||
|
|
||||||
/* ocx_*.c -- Operational Context *************************************/
|
/* ocx_*.c -- Operational Context *************************************/
|
||||||
|
|
||||||
@@ -133,7 +134,6 @@ void TS_RunTest(struct ocx *ocx);
|
|||||||
|
|
||||||
/* todo.c -- todo-list scheduler **************************************/
|
/* todo.c -- todo-list scheduler **************************************/
|
||||||
|
|
||||||
struct todo; // private
|
|
||||||
|
|
||||||
enum todo_e {
|
enum todo_e {
|
||||||
TODO_FAIL = -1, // Break out of TODO_Run()
|
TODO_FAIL = -1, // Break out of TODO_Run()
|
||||||
|
|||||||
7
ntp.h
7
ntp.h
@@ -28,7 +28,6 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct sockaddr;
|
|
||||||
struct ntp_peer;
|
struct ntp_peer;
|
||||||
|
|
||||||
#ifdef NTP_H_INCLUDED
|
#ifdef NTP_H_INCLUDED
|
||||||
@@ -90,7 +89,6 @@ void NF_Init(void);
|
|||||||
|
|
||||||
/* ntp_peer.c -- State management *************************************/
|
/* ntp_peer.c -- State management *************************************/
|
||||||
|
|
||||||
struct ntp_group;
|
|
||||||
|
|
||||||
struct ntp_peer {
|
struct ntp_peer {
|
||||||
unsigned magic;
|
unsigned magic;
|
||||||
@@ -115,7 +113,8 @@ struct ntp_peer {
|
|||||||
struct ntp_peer *NTP_Peer_New(const char *name, const void *, unsigned);
|
struct ntp_peer *NTP_Peer_New(const char *name, const void *, unsigned);
|
||||||
struct ntp_peer *NTP_Peer_NewLookup(struct ocx *ocx, const char *name);
|
struct ntp_peer *NTP_Peer_NewLookup(struct ocx *ocx, const char *name);
|
||||||
void NTP_Peer_Destroy(struct ntp_peer *np);
|
void NTP_Peer_Destroy(struct ntp_peer *np);
|
||||||
int NTP_Peer_Poll(struct ocx *, int fd, const struct ntp_peer *, double tmo);
|
int NTP_Peer_Poll(struct ocx *, const struct udp_socket *,
|
||||||
|
const struct ntp_peer *, double tmo);
|
||||||
|
|
||||||
/* ntp_peerset.c -- Peer set management ****************************/
|
/* ntp_peerset.c -- Peer set management ****************************/
|
||||||
|
|
||||||
@@ -124,7 +123,7 @@ void NTP_PeerSet_AddPeer(struct ocx *ocx, struct ntp_peerset *npl,
|
|||||||
struct ntp_peer *np);
|
struct ntp_peer *np);
|
||||||
int NTP_PeerSet_Add(struct ocx *, struct ntp_peerset *,
|
int NTP_PeerSet_Add(struct ocx *, struct ntp_peerset *,
|
||||||
const char *hostname);
|
const char *hostname);
|
||||||
void NTP_PeerSet_Poll(struct ocx *, struct ntp_peerset *, int,
|
void NTP_PeerSet_Poll(struct ocx *, struct ntp_peerset *, struct udp_socket *,
|
||||||
struct todolist *);
|
struct todolist *);
|
||||||
|
|
||||||
struct ntp_peer *NTP_PeerSet_Iter0(const struct ntp_peerset *);
|
struct ntp_peer *NTP_PeerSet_Iter0(const struct ntp_peerset *);
|
||||||
|
|||||||
38
ntp_peer.c
38
ntp_peer.c
@@ -25,10 +25,9 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <math.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <poll.h>
|
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
|
||||||
@@ -103,28 +102,30 @@ NTP_Peer_Destroy(struct ntp_peer *np)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
NTP_Peer_Poll(struct ocx *ocx, int fd, const struct ntp_peer *np, double tmo)
|
NTP_Peer_Poll(struct ocx *ocx, const struct udp_socket *usc,
|
||||||
|
const struct ntp_peer *np, double tmo)
|
||||||
{
|
{
|
||||||
char buf[100];
|
char buf[100];
|
||||||
ssize_t len;
|
ssize_t len;
|
||||||
struct sockaddr_storage rss;
|
struct sockaddr_storage rss;
|
||||||
socklen_t rssl;
|
socklen_t rssl;
|
||||||
ssize_t l;
|
ssize_t l;
|
||||||
int i, timeout_msec;
|
int i;
|
||||||
struct pollfd pfd[1];
|
|
||||||
struct timestamp t0, t1, t2;
|
struct timestamp t0, t1, t2;
|
||||||
double d;
|
double d;
|
||||||
|
|
||||||
assert(fd >= 0);
|
AN(usc);
|
||||||
CHECK_OBJ_NOTNULL(np, NTP_PEER_MAGIC);
|
CHECK_OBJ_NOTNULL(np, NTP_PEER_MAGIC);
|
||||||
assert(tmo > 0.0 && tmo <= 1.0);
|
assert(tmo > 0.0 && tmo <= 1.0);
|
||||||
|
|
||||||
len = NTP_Packet_Pack(buf, sizeof buf, np->tx_pkt);
|
len = NTP_Packet_Pack(buf, sizeof buf, np->tx_pkt);
|
||||||
|
|
||||||
l = sendto(fd, buf, len, 0, np->sa, np->sa_len);
|
l = Udp_Send(ocx, usc, np->sa, np->sa_len, buf, len);
|
||||||
if (l != len)
|
if (l != len) {
|
||||||
Fail(ocx, l < 0 ? 1 : 0,
|
Debug(ocx, "Tx peer %s %s got %zd (%s)\n",
|
||||||
"Tx peer %s %s got %zd", np->hostname, np->ip, l);
|
np->hostname, np->ip, l, strerror(errno));
|
||||||
|
return (0);
|
||||||
|
}
|
||||||
|
|
||||||
(void)TB_Now(&t0);
|
(void)TB_Now(&t0);
|
||||||
|
|
||||||
@@ -132,25 +133,12 @@ NTP_Peer_Poll(struct ocx *ocx, int fd, const struct ntp_peer *np, double tmo)
|
|||||||
(void)TB_Now(&t1);
|
(void)TB_Now(&t1);
|
||||||
d = TS_Diff(&t1, &t0);
|
d = TS_Diff(&t1, &t0);
|
||||||
|
|
||||||
timeout_msec = lround(1e3 * (tmo - d));
|
i = UdpTimedRx(ocx, usc, &rss, &rssl, &t2,
|
||||||
|
buf, sizeof buf, tmo - d);
|
||||||
pfd[0].fd = fd;
|
|
||||||
pfd[0].events = POLLIN;
|
|
||||||
pfd[0].revents = 0;
|
|
||||||
|
|
||||||
if (timeout_msec <= 0)
|
|
||||||
i = 0;
|
|
||||||
else
|
|
||||||
i = poll(pfd, 1, timeout_msec);
|
|
||||||
|
|
||||||
if (i < 0)
|
|
||||||
Fail(ocx, 1, "poll(2) failed\n");
|
|
||||||
|
|
||||||
if (i == 0)
|
if (i == 0)
|
||||||
return (0);
|
return (0);
|
||||||
|
|
||||||
i = UdpTimedRx(ocx, fd, &rss, &rssl, &t2, buf, sizeof buf);
|
|
||||||
|
|
||||||
if (i < 0)
|
if (i < 0)
|
||||||
Fail(ocx, 1, "Rx failed\n");
|
Fail(ocx, 1, "Rx failed\n");
|
||||||
|
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ struct ntp_peerset {
|
|||||||
TAILQ_HEAD(,ntp_group) group;
|
TAILQ_HEAD(,ntp_group) group;
|
||||||
int ngroup;
|
int ngroup;
|
||||||
|
|
||||||
int fd;
|
struct udp_socket *usc;
|
||||||
double t0;
|
double t0;
|
||||||
double init_duration;
|
double init_duration;
|
||||||
double poll_period;
|
double poll_period;
|
||||||
@@ -186,7 +186,7 @@ ntp_peerset_poll(struct ocx *ocx, struct todolist *tdl, void *priv)
|
|||||||
}
|
}
|
||||||
npl->t0 += d;
|
npl->t0 += d;
|
||||||
TODO_ScheduleRel(tdl, ntp_peerset_poll, npl, d, 0.0, "NTP_PeerSet");
|
TODO_ScheduleRel(tdl, ntp_peerset_poll, npl, d, 0.0, "NTP_PeerSet");
|
||||||
if (NTP_Peer_Poll(ocx, npl->fd, np, 0.8)) {
|
if (NTP_Peer_Poll(ocx, npl->usc, np, 0.8)) {
|
||||||
if (np->filter_func != NULL)
|
if (np->filter_func != NULL)
|
||||||
np->filter_func(ocx, np);
|
np->filter_func(ocx, np);
|
||||||
}
|
}
|
||||||
@@ -214,16 +214,17 @@ ntp_peerset_herd(struct ocx *ocx, struct todolist *tdl, void *priv)
|
|||||||
/**********************************************************************/
|
/**********************************************************************/
|
||||||
|
|
||||||
void
|
void
|
||||||
NTP_PeerSet_Poll(struct ocx *ocx, struct ntp_peerset *npl, int fd,
|
NTP_PeerSet_Poll(struct ocx *ocx, struct ntp_peerset *npl,
|
||||||
|
struct udp_socket *usc,
|
||||||
struct todolist *tdl)
|
struct todolist *tdl)
|
||||||
{
|
{
|
||||||
|
|
||||||
(void)ocx;
|
(void)ocx;
|
||||||
CHECK_OBJ_NOTNULL(npl, NTP_PEERSET_MAGIC);
|
CHECK_OBJ_NOTNULL(npl, NTP_PEERSET_MAGIC);
|
||||||
assert(fd >= 0);
|
AN(usc);
|
||||||
AN(tdl);
|
AN(tdl);
|
||||||
|
|
||||||
npl->fd = fd;
|
npl->usc = usc;
|
||||||
npl->t0 = 1.0;
|
npl->t0 = 1.0;
|
||||||
npl->init_duration = 64.;
|
npl->init_duration = 64.;
|
||||||
npl->init_packets = 6.;
|
npl->init_packets = 6.;
|
||||||
|
|||||||
100
udp.c
100
udp.c
@@ -24,21 +24,32 @@
|
|||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <math.h>
|
||||||
|
#include <poll.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
|
||||||
#include "ntimed.h"
|
#include "ntimed.h"
|
||||||
#include "udp.h"
|
#include "udp.h"
|
||||||
|
|
||||||
int
|
struct udp_socket {
|
||||||
UdpTimedSocket(struct ocx *ocx, int fam)
|
unsigned magic;
|
||||||
|
#define UDP_SOCKET_MAGIC 0x302a563f
|
||||||
|
|
||||||
|
int fd4;
|
||||||
|
int fd6;
|
||||||
|
};
|
||||||
|
|
||||||
|
static int
|
||||||
|
udp_sock(int fam)
|
||||||
{
|
{
|
||||||
int fd;
|
int fd;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
fd = socket(fam, SOCK_DGRAM, 0);
|
fd = socket(fam, SOCK_DGRAM, 0);
|
||||||
if (fd < 0)
|
if (fd < 0)
|
||||||
Fail(ocx, 1, "socket(2) failed");
|
return (fd);
|
||||||
|
|
||||||
#ifdef IP_RECVDSTADDR
|
#ifdef IP_RECVDSTADDR
|
||||||
i = 1;
|
i = 1;
|
||||||
@@ -57,23 +68,69 @@ UdpTimedSocket(struct ocx *ocx, int fam)
|
|||||||
return (fd);
|
return (fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct udp_socket *
|
||||||
|
UdpTimedSocket(struct ocx *ocx)
|
||||||
|
{
|
||||||
|
struct udp_socket *usc;
|
||||||
|
|
||||||
|
ALLOC_OBJ(usc, UDP_SOCKET_MAGIC);
|
||||||
|
AN(usc);
|
||||||
|
usc->fd4 = udp_sock(AF_INET);
|
||||||
|
usc->fd6 = udp_sock(AF_INET6);
|
||||||
|
if (usc->fd4 < 0 && usc->fd6 < 0)
|
||||||
|
Fail(ocx, 1, "socket(2) failed");
|
||||||
|
return (usc);
|
||||||
|
}
|
||||||
|
|
||||||
ssize_t
|
ssize_t
|
||||||
UdpTimedRx(struct ocx *ocx, int fd, struct sockaddr_storage *ss, socklen_t *sl,
|
UdpTimedRx(struct ocx *ocx, const struct udp_socket *usc,
|
||||||
struct timestamp *ts, void *buf, ssize_t len)
|
struct sockaddr_storage *ss, socklen_t *sl,
|
||||||
|
struct timestamp *ts, void *buf, ssize_t len, double tmo)
|
||||||
{
|
{
|
||||||
struct msghdr msg;
|
struct msghdr msg;
|
||||||
struct iovec iov;
|
struct iovec iov;
|
||||||
struct cmsghdr *cmsg;
|
struct cmsghdr *cmsg;
|
||||||
u_char ctrl[1024];
|
u_char ctrl[1024];
|
||||||
ssize_t rl;
|
ssize_t rl;
|
||||||
|
int i, j;
|
||||||
|
int tmo_msec;
|
||||||
|
struct pollfd pfd[2];
|
||||||
|
|
||||||
assert(fd >= 0);
|
CHECK_OBJ_NOTNULL(usc, UDP_SOCKET_MAGIC);
|
||||||
AN(ss);
|
AN(ss);
|
||||||
AN(sl);
|
AN(sl);
|
||||||
AN(ts);
|
AN(ts);
|
||||||
AN(buf);
|
AN(buf);
|
||||||
assert(len > 0);
|
assert(len > 0);
|
||||||
|
|
||||||
|
|
||||||
|
j = 0;
|
||||||
|
if (usc->fd4 >= 0) {
|
||||||
|
pfd[j].fd = usc->fd4;
|
||||||
|
pfd[j].events = POLLIN;
|
||||||
|
pfd[j++].revents = 0;
|
||||||
|
}
|
||||||
|
if (usc->fd6 >= 0) {
|
||||||
|
pfd[j].fd = usc->fd6;
|
||||||
|
pfd[j].events = POLLIN;
|
||||||
|
pfd[j++].revents = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tmo == 0.0) {
|
||||||
|
tmo_msec = -1;
|
||||||
|
} else {
|
||||||
|
tmo_msec = lround(1e3 * tmo);
|
||||||
|
if (tmo_msec <= 0)
|
||||||
|
tmo_msec = 0;
|
||||||
|
}
|
||||||
|
i = poll(pfd, j, tmo_msec);
|
||||||
|
|
||||||
|
if (i < 0)
|
||||||
|
Fail(ocx, 1, "poll(2) failed\n");
|
||||||
|
|
||||||
|
if (i == 0)
|
||||||
|
return (0);
|
||||||
|
|
||||||
memset(&msg, 0, sizeof msg);
|
memset(&msg, 0, sizeof msg);
|
||||||
msg.msg_name = (void*)ss;
|
msg.msg_name = (void*)ss;
|
||||||
msg.msg_namelen = sizeof *ss;
|
msg.msg_namelen = sizeof *ss;
|
||||||
@@ -86,7 +143,14 @@ UdpTimedRx(struct ocx *ocx, int fd, struct sockaddr_storage *ss, socklen_t *sl,
|
|||||||
memset(ctrl, 0, sizeof ctrl);
|
memset(ctrl, 0, sizeof ctrl);
|
||||||
cmsg = (void*)ctrl;
|
cmsg = (void*)ctrl;
|
||||||
|
|
||||||
rl = recvmsg(fd, &msg, 0);
|
for (i = 0; i < j; i++)
|
||||||
|
if (pfd[i].revents & POLLIN)
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (i == j)
|
||||||
|
return (0);
|
||||||
|
|
||||||
|
rl = recvmsg(pfd[i].fd, &msg, 0);
|
||||||
if (rl <= 0)
|
if (rl <= 0)
|
||||||
return (rl);
|
return (rl);
|
||||||
|
|
||||||
@@ -129,3 +193,25 @@ UdpTimedRx(struct ocx *ocx, int fd, struct sockaddr_storage *ss, socklen_t *sl,
|
|||||||
}
|
}
|
||||||
return (rl);
|
return (rl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ssize_t
|
||||||
|
Udp_Send(struct ocx *ocx, const struct udp_socket *usc,
|
||||||
|
const void *ss, socklen_t sl, const void *buf, ssize_t len)
|
||||||
|
{
|
||||||
|
const struct sockaddr *sa;
|
||||||
|
|
||||||
|
(void)ocx;
|
||||||
|
CHECK_OBJ_NOTNULL(usc, UDP_SOCKET_MAGIC);
|
||||||
|
AN(ss);
|
||||||
|
AN(sl);
|
||||||
|
AN(buf);
|
||||||
|
AN(len);
|
||||||
|
sa = ss;
|
||||||
|
if (sa->sa_family == AF_INET)
|
||||||
|
return (sendto(usc->fd4, buf, len, 0, ss, sl));
|
||||||
|
if (sa->sa_family == AF_INET6)
|
||||||
|
return (sendto(usc->fd6, buf, len, 0, ss, sl));
|
||||||
|
|
||||||
|
WRONG("Wrong AF_");
|
||||||
|
return (0);
|
||||||
|
}
|
||||||
|
|||||||
12
udp.h
12
udp.h
@@ -33,7 +33,13 @@
|
|||||||
* UDP sockets
|
* UDP sockets
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int UdpTimedSocket(struct ocx *ocx, int fam);
|
|
||||||
ssize_t UdpTimedRx(struct ocx *ocx, int fd, struct sockaddr_storage *ss,
|
struct udp_socket *UdpTimedSocket(struct ocx *ocx);
|
||||||
socklen_t *sl, struct timestamp *ts, void *buf, ssize_t len);
|
ssize_t UdpTimedRx(struct ocx *, const struct udp_socket *,
|
||||||
|
struct sockaddr_storage *, socklen_t *,
|
||||||
|
struct timestamp *,
|
||||||
|
void *, ssize_t len,
|
||||||
|
double tmo);
|
||||||
|
ssize_t Udp_Send(struct ocx *, const struct udp_socket *,
|
||||||
|
const void *sa, socklen_t, const void *ptr, ssize_t);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user