diff --git a/build/ios_app_framework/Debug-iphoneos/ZeroTierSDK_iOS.framework/Headers/ZeroTierSDK_iOS.h b/build/ios_app_framework/Debug-iphoneos/ZeroTierSDK_iOS.framework/Headers/ZeroTierSDK_iOS.h deleted file mode 100644 index 65f44c2..0000000 --- a/build/ios_app_framework/Debug-iphoneos/ZeroTierSDK_iOS.framework/Headers/ZeroTierSDK_iOS.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// ZeroTierSDK_iOS.h -// ZeroTierSDK_iOS -// -// Created by Joseph Henry on 6/15/16. -// Copyright © 2016 ZeroTier Inc. All rights reserved. -// - -#import - -//! Project version number for ZeroTierSDK_iOS. -FOUNDATION_EXPORT double ZeroTierSDK_iOSVersionNumber; - -//! Project version string for ZeroTierSDK_iOS. -FOUNDATION_EXPORT const unsigned char ZeroTierSDK_iOSVersionString[]; - -// In this header, you should import all the public headers of your framework using statements like #import - - diff --git a/integrations/Unity3D/README.md b/integrations/Unity3D/README.md index e45eb55..6df90f4 100644 --- a/integrations/Unity3D/README.md +++ b/integrations/Unity3D/README.md @@ -7,8 +7,6 @@ We want your Unity apps to talk *directly* over a flat, secure, no-config virtua Our implementation currently intends to be the bare minimum required to get your Unity application to talk over ZeroTier virtual networks. As a result, we've created an API that is very similar to the classic BSD-style sockets API. With this basic API it is possible to construct more abstracted network layers much like Unity's LLAPI and HLAPI. -Our example project can be found [here]() - *** ## API @@ -51,7 +49,7 @@ public class Example public void example_server() { zt = new ZeroTierNetworkInterface (); // Start interface - zt.Join("565799d8f6e1c11a"); // Join your network + zt.Join("8056c2e21c000001"); // Join your network Thread connectThread = new Thread(() => { // Create ZeroTier-administered socket diff --git a/integrations/apple/example_app/OSX/README.md b/integrations/apple/example_app/OSX/README.md index 3b9cb29..05cd9b5 100644 --- a/integrations/apple/example_app/OSX/README.md +++ b/integrations/apple/example_app/OSX/README.md @@ -83,7 +83,7 @@ The following APIs are available for this integration: **Step 5: Join a network!** -Simply call `zt_join_network("XXXXXXXXXXXXXXXX")` +Simply call `zt_join_network("nwid")` *** **NSStream and SOCKS Proxy:** diff --git a/integrations/apple/example_app/iOS/README.md b/integrations/apple/example_app/iOS/README.md index ff7646f..7171ee5 100644 --- a/integrations/apple/example_app/iOS/README.md +++ b/integrations/apple/example_app/iOS/README.md @@ -52,7 +52,7 @@ The following APIs are available for this integration: **Step 5: Join a network!** -Simply call `zt_join_network("XXXXXXXXXXXXXXXX")` +Simply call `zt_join_network("nwid")` *** **NSStream and SOCKS Proxy:**