Browse Source

set proper copyright/license in code files

pull/1/head
Grant Limberg 10 years ago
parent
commit
7025c7090b
  1. 24
      ZeroTier One/AboutViewController.h
  2. 24
      ZeroTier One/AboutViewController.m
  3. 24
      ZeroTier One/AppDelegate.h
  4. 24
      ZeroTier One/AppDelegate.m
  5. 24
      ZeroTier One/AuthtokenCopy.h
  6. 26
      ZeroTier One/AuthtokenCopy.m
  7. 24
      ZeroTier One/JoinNetworkViewController.h
  8. 24
      ZeroTier One/JoinNetworkViewController.m
  9. 24
      ZeroTier One/Network.h
  10. 24
      ZeroTier One/Network.m
  11. 24
      ZeroTier One/NetworkInfoCell.h
  12. 24
      ZeroTier One/NetworkInfoCell.m
  13. 24
      ZeroTier One/NetworkMonitor.h
  14. 26
      ZeroTier One/NetworkMonitor.m
  15. 24
      ZeroTier One/NodeStatus.h
  16. 25
      ZeroTier One/NodeStatus.m
  17. 24
      ZeroTier One/PreferencesViewController.h
  18. 24
      ZeroTier One/PreferencesViewController.m
  19. 24
      ZeroTier One/ServiceCom.h
  20. 24
      ZeroTier One/ServiceCom.m
  21. 24
      ZeroTier One/ShowNetworksViewController.h
  22. 24
      ZeroTier One/ShowNetworksViewController.m
  23. 24
      ZeroTier One/main.m

24
ZeroTier One/AboutViewController.h

@ -1,10 +1,20 @@
// /*
// AboutViewController.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h> #import <WebKit/WebKit.h>

24
ZeroTier One/AboutViewController.m

@ -1,10 +1,20 @@
// /*
// AboutViewController.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "AboutViewController.h" #import "AboutViewController.h"

24
ZeroTier One/AppDelegate.h

@ -1,10 +1,20 @@
// /*
// AppDelegate.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

24
ZeroTier One/AppDelegate.m

@ -1,10 +1,20 @@
// /*
// AppDelegate.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "AppDelegate.h" #import "AppDelegate.h"
#import "NetworkMonitor.h" #import "NetworkMonitor.h"

24
ZeroTier One/AuthtokenCopy.h

@ -1,10 +1,20 @@
// /*
// AuthtokenCopy.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 5/31/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#ifndef AuthtokenCopy_h #ifndef AuthtokenCopy_h
#define AuthtokenCopy_h #define AuthtokenCopy_h

26
ZeroTier One/AuthtokenCopy.m

@ -1,10 +1,20 @@
// /*
// AuthtokenCopy.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 5/31/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
@ -84,4 +94,4 @@ NSString* getAdminAuthToken(AuthorizationRef authRef) {
} }
return @""; return @"";
} }

24
ZeroTier One/JoinNetworkViewController.h

@ -1,10 +1,20 @@
// /*
// JoinNetworkViewController.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

24
ZeroTier One/JoinNetworkViewController.m

@ -1,10 +1,20 @@
// /*
// JoinNetworkViewController.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "JoinNetworkViewController.h" #import "JoinNetworkViewController.h"
#import "ServiceCom.h" #import "ServiceCom.h"

24
ZeroTier One/Network.h

@ -1,10 +1,20 @@
// /*
// Network.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/4/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>

24
ZeroTier One/Network.m

@ -1,10 +1,20 @@
// /*
// Network.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/4/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "Network.h" #import "Network.h"

24
ZeroTier One/NetworkInfoCell.h

@ -1,10 +1,20 @@
// /*
// NetworkInfoCell.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

24
ZeroTier One/NetworkInfoCell.m

@ -1,10 +1,20 @@
// /*
// NetworkInfoCell.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "NetworkInfoCell.h" #import "NetworkInfoCell.h"
#import "ServiceCom.h" #import "ServiceCom.h"

24
ZeroTier One/NetworkMonitor.h

@ -1,10 +1,20 @@
// /*
// NetworkMonitor.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>

26
ZeroTier One/NetworkMonitor.m

@ -1,10 +1,20 @@
// /*
// NetworkMonitor.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "NetworkMonitor.h" #import "NetworkMonitor.h"
#import "Network.h" #import "Network.h"
@ -240,4 +250,4 @@ NSString * const StatusUpdateKey = @"com.zerotier.one.status";
} }
} }
@end @end

24
ZeroTier One/NodeStatus.h

@ -1,10 +1,20 @@
// /*
// NodeStatus.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/4/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>

25
ZeroTier One/NodeStatus.m

@ -1,11 +1,20 @@
// /*
// NodeStatus.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/4/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "NodeStatus.h" #import "NodeStatus.h"
@implementation NodeStatus @implementation NodeStatus

24
ZeroTier One/PreferencesViewController.h

@ -1,10 +1,20 @@
// /*
// PreferencesViewController.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

24
ZeroTier One/PreferencesViewController.m

@ -1,10 +1,20 @@
// /*
// PreferencesViewController.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "PreferencesViewController.h" #import "PreferencesViewController.h"

24
ZeroTier One/ServiceCom.h

@ -1,10 +1,20 @@
// /*
// ServiceCom.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/4/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>

24
ZeroTier One/ServiceCom.m

@ -1,10 +1,20 @@
// /*
// ServiceCom.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/4/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "ServiceCom.h" #import "ServiceCom.h"
#import "AuthtokenCopy.h" #import "AuthtokenCopy.h"

24
ZeroTier One/ShowNetworksViewController.h

@ -1,10 +1,20 @@
// /*
// ShowNetworksViewController.h * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

24
ZeroTier One/ShowNetworksViewController.m

@ -1,10 +1,20 @@
// /*
// ShowNetworksViewController.m * ZeroTier One - Network Virtualization Everywhere
// ZeroTier One * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import "ShowNetworksViewController.h" #import "ShowNetworksViewController.h"
#import "NetworkMonitor.h" #import "NetworkMonitor.h"

24
ZeroTier One/main.m

@ -1,10 +1,20 @@
// /*
// main.m * ZeroTier One - Network Virtualization Everywhere
// testapp * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
// *
// Created by Grant Limberg on 8/7/16. * This program is free software: you can redistribute it and/or modify
// Copyright © 2016 ZeroTier, Inc. 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/>.
*/
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

Loading…
Cancel
Save