You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.5 KiB
77 lines
2.5 KiB
/* |
|
* ZeroTier SDK - Network Virtualization Everywhere |
|
* Copyright (C) 2011-2017 ZeroTier, Inc. https://www.zerotier.com/ |
|
* |
|
* This program is free software: you can redistribute it and/or modify |
|
* it under the terms of the GNU General Public License as published by |
|
* the Free Software Foundation, either version 3 of the License, or |
|
* (at your option) any later version. |
|
* |
|
* This program 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 General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License |
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
* |
|
* -- |
|
* |
|
* You can be released from the requirements of the license by purchasing |
|
* a commercial license. Buying such a license is mandatory as soon as you |
|
* develop commercial closed-source software that incorporates or links |
|
* directly against ZeroTier software without disclosing the source code |
|
* of your own application. |
|
*/ |
|
|
|
// |
|
// Implementations located in src/wrappers/swift/XcodeWrapper.cpp |
|
// |
|
|
|
#ifndef Example_OSX_IOS_Bridging_Header_h |
|
#define Example_OSX_IOS_Bridging_Header_h |
|
|
|
#include <sys/socket.h> |
|
|
|
// ZT INTERCEPT/RPC CONTROLS |
|
int zt_init_rpc(const char *path, const char *nwid); |
|
int zt_start_intercept(); |
|
void zt_disable_intercept(); |
|
void zt_enable_intercept(); |
|
|
|
// ZT SERVICE CONTROLS |
|
void zt_start_service(const char * path); |
|
void zt_stop_service(); |
|
void zt_start_service_and_rpc(const char * path, const char * nwid); |
|
bool zt_service_is_running(); |
|
void zt_join_network(const char *nwid); |
|
void zt_leave_network(const char *nwid); |
|
void zt_get_ipv4_address(const char *nwid, char *addrstr); |
|
void zt_get_ipv6_address(const char *nwid, char *addrstr); |
|
|
|
|
|
// SOCKS5 PROXY CONTROLS |
|
void zt_start_proxy_server(const char *nwid, struct sockaddr_storage addr); |
|
void zt_stop_proxy_server(const char *nwid); |
|
void zt_proxy_is_running(const char *nwid); |
|
void zt_get_proxy_server_address(const char *nwid, struct sockaddr_storage addr); |
|
|
|
// SOCKET API |
|
int zt_connect(CONNECT_SIG); |
|
int zt_bind(BIND_SIG); |
|
int zt_accept(ACCEPT_SIG); |
|
int zt_listen(LISTEN_SIG); |
|
int zt_socket(SOCKET_SIG); |
|
int zt_setsockopt(SETSOCKOPT_SIG); |
|
int zt_getsockopt(GETSOCKOPT_SIG); |
|
int zt_close(CLOSE_SIG); |
|
int zt_getsockname(GETSOCKNAME_SIG); |
|
int zt_getpeername(GETPEERNAME_SIG); |
|
int zt_recvfrom(RECVFROM_SIG); |
|
int zt_fcntl(FCNTL_SIG); |
|
int zt_sendto(SENDTO_SIG); |
|
|
|
#endif /* Example_OSX_IOS_Bridging_Header_h */ |
|
|
|
|
|
|
|
|