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-libzt/examples/bindings/objective-c/libztExampleApp/libztExampleApp/main.m
2017-10-19 17:12:45 -07:00

20 lines
419 B
Objective-C

//
// main.m
// libztExampleApp
//
// Created by Joseph Henry on 10/19/17.
// Copyright © 2017 ZeroTier, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
zts_startjoin("libzt_config_path", "XXXXXXXXXXXXXXXX");
zts_socket(2, 1, 0);
}
return 0;
}