/usr/include/freeradius/udpfromto.h is in libfreeradius-dev 2.1.10+dfsg-3ubuntu0.12.04.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #ifndef UDPFROMTO_H
#define UDPFROMTO_H
/*
* Version: $Id$
*
*/
#include <freeradius/ident.h>
RCSIDH(udpfromtoh, "$Id$")
#include <freeradius/autoconf.h>
#include <freeradius/libradius.h>
#ifdef WITH_UDPFROMTO
int udpfromto_init(int s);
int recvfromto(int s, void *buf, size_t len, int flags,
struct sockaddr *from, socklen_t *fromlen,
struct sockaddr *to, socklen_t *tolen);
int sendfromto(int s, void *buf, size_t len, int flags,
struct sockaddr *from, socklen_t fromlen,
struct sockaddr *to, socklen_t tolen);
#endif
#endif
|