This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/netcon/NetconUtilities.hpp

12 lines
261 B
C++
Raw Normal View History

2015-09-10 13:56:01 -04:00
#ifndef _NETCON_UTILITIES_H
#define _NETCON_UTILITIES_H
2015-09-10 20:02:13 -04:00
namespace ZeroTier
{
ip_addr_t ip_addr_sin(register struct sockaddr_in *sin);
ssize_t sock_fd_write(int sock, int fd);
ssize_t sock_fd_read(int sock, void *buf, ssize_t bufsize, int *fd);
}
2015-09-10 13:56:01 -04:00
#endif