Added licenses
This commit is contained in:
7
integrations/docker/docker_demo/README.md
Normal file
7
integrations/docker/docker_demo/README.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
Simple Docker Demo
|
||||||
|
====
|
||||||
|
|
||||||
|
- Type `make docker_demo` to build an image with the SDK pre-installed and a test image to serve as a monitor
|
||||||
|
- From this local directory, start both containers with `./start.sh`
|
||||||
|
|
||||||
|
Results of the test can be found in `_results`
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Runs test image and monitor image as daemons
|
# Runs test image and monitor image as daemons
|
||||||
test_name=${PWD##*/}
|
test_name="docker_demo"
|
||||||
echo 'Starting containers for: ' "$test_name"
|
echo 'Starting containers for: ' "$test_name"
|
||||||
touch "$test_name".name
|
touch "$test_name".name
|
||||||
test_container=$(docker run -d -it -v $PWD/_results:/opt/results --privileged --device=/dev/net/tun "$test_name":latest)
|
test_container=$(docker run -d -it -v $PWD/_results:/opt/results --privileged --device=/dev/net/tun "$test_name":latest)
|
||||||
|
|||||||
@@ -1,3 +1,30 @@
|
|||||||
|
/*
|
||||||
|
* ZeroTier One - Network Virtualization Everywhere
|
||||||
|
* Copyright (C) 2011-2015 ZeroTier, Inc.
|
||||||
|
*
|
||||||
|
* 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/>.
|
||||||
|
*
|
||||||
|
* --
|
||||||
|
*
|
||||||
|
* ZeroTier may be used and distributed under the terms of the GPLv3, which
|
||||||
|
* are available at: http://www.gnu.org/licenses/gpl-3.0.html
|
||||||
|
*
|
||||||
|
* If you would like to embed ZeroTier into a commercial application or
|
||||||
|
* redistribute it in a modified binary form, please contact ZeroTier Networks
|
||||||
|
* LLC. Start here: http://www.zerotier.com/
|
||||||
|
*/
|
||||||
|
|
||||||
package ZeroTier;
|
package ZeroTier;
|
||||||
public class SDK {
|
public class SDK {
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,29 @@
|
|||||||
//
|
/*
|
||||||
// SDK_XcodeWrapper.cpp
|
* ZeroTier One - Network Virtualization Everywhere
|
||||||
// SDK-iOS
|
* Copyright (C) 2011-2015 ZeroTier, Inc.
|
||||||
//
|
*
|
||||||
// Created by Joseph Henry on 2/14/16.
|
* This program is free software: you can redistribute it and/or modify
|
||||||
// Copyright © 2016 ZeroTier. All rights reserved.
|
* 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/>.
|
||||||
|
*
|
||||||
|
* --
|
||||||
|
*
|
||||||
|
* ZeroTier may be used and distributed under the terms of the GPLv3, which
|
||||||
|
* are available at: http://www.gnu.org/licenses/gpl-3.0.html
|
||||||
|
*
|
||||||
|
* If you would like to embed ZeroTier into a commercial application or
|
||||||
|
* redistribute it in a modified binary form, please contact ZeroTier Networks
|
||||||
|
* LLC. Start here: http://www.zerotier.com/
|
||||||
|
*/
|
||||||
|
|
||||||
#include "SDK.h"
|
#include "SDK.h"
|
||||||
#include "SDK_XcodeWrapper.hpp"
|
#include "SDK_XcodeWrapper.hpp"
|
||||||
|
|||||||
@@ -1,10 +1,29 @@
|
|||||||
//
|
/*
|
||||||
// SDK_XcodeWrapper.hpp
|
* ZeroTier One - Network Virtualization Everywhere
|
||||||
// SDK-iOS
|
* Copyright (C) 2011-2015 ZeroTier, Inc.
|
||||||
//
|
*
|
||||||
// Created by Joseph Henry on 2/14/16.
|
* This program is free software: you can redistribute it and/or modify
|
||||||
// Copyright © 2016 ZeroTier. All rights reserved.
|
* 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/>.
|
||||||
|
*
|
||||||
|
* --
|
||||||
|
*
|
||||||
|
* ZeroTier may be used and distributed under the terms of the GPLv3, which
|
||||||
|
* are available at: http://www.gnu.org/licenses/gpl-3.0.html
|
||||||
|
*
|
||||||
|
* If you would like to embed ZeroTier into a commercial application or
|
||||||
|
* redistribute it in a modified binary form, please contact ZeroTier Networks
|
||||||
|
* LLC. Start here: http://www.zerotier.com/
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SDK_XCODE_WRAPPER_HPP
|
#ifndef SDK_XCODE_WRAPPER_HPP
|
||||||
#define SDK_XCODE_WRAPPER_HPP
|
#define SDK_XCODE_WRAPPER_HPP
|
||||||
|
|||||||
Reference in New Issue
Block a user