aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2018-10-24 07:07:28 +0530
committerRoopesh Chander <roop@roopc.net>2018-10-27 15:13:01 +0530
commit8ebfc6afcd13552251a2b9d58ce6f500a1ca927d (patch)
tree0d6a3edd307fe9c76dd17b6c81073980169e6ad6 /WireGuard
parentTunnel detail: Start off with the tunnel detail view (diff)
downloadwireguard-apple-8ebfc6afcd13552251a2b9d58ce6f500a1ca927d.tar.xz
wireguard-apple-8ebfc6afcd13552251a2b9d58ce6f500a1ca927d.zip
Smaller copyright headers
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard')
-rw-r--r--WireGuard/WireGuard/Model/Configuration.swift9
-rw-r--r--WireGuard/WireGuard/Model/DNSServer.swift9
-rw-r--r--WireGuard/WireGuard/Model/Endpoint.swift9
-rw-r--r--WireGuard/WireGuard/Model/IPAddressRange.swift9
-rw-r--r--WireGuard/WireGuard/UI/TunnelViewModel.swift9
-rw-r--r--WireGuard/WireGuard/UI/iOS/AppDelegate.swift9
-rw-r--r--WireGuard/WireGuard/UI/iOS/MainViewController.swift9
-rw-r--r--WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift9
-rw-r--r--WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift9
-rw-r--r--WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift9
-rw-r--r--WireGuard/WireGuard/VPN/TunnelsManager.swift9
11 files changed, 22 insertions, 77 deletions
diff --git a/WireGuard/WireGuard/Model/Configuration.swift b/WireGuard/WireGuard/Model/Configuration.swift
index 70e670f..b430c8f 100644
--- a/WireGuard/WireGuard/Model/Configuration.swift
+++ b/WireGuard/WireGuard/Model/Configuration.swift
@@ -1,10 +1,5 @@
-//
-// TunnelConfiguration.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 13/10/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import Foundation
diff --git a/WireGuard/WireGuard/Model/DNSServer.swift b/WireGuard/WireGuard/Model/DNSServer.swift
index 7eee007..c4a51ec 100644
--- a/WireGuard/WireGuard/Model/DNSServer.swift
+++ b/WireGuard/WireGuard/Model/DNSServer.swift
@@ -1,10 +1,5 @@
-//
-// DNSServer.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 23/10/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import Foundation
import Network
diff --git a/WireGuard/WireGuard/Model/Endpoint.swift b/WireGuard/WireGuard/Model/Endpoint.swift
index c8ade2f..eb46b0e 100644
--- a/WireGuard/WireGuard/Model/Endpoint.swift
+++ b/WireGuard/WireGuard/Model/Endpoint.swift
@@ -1,10 +1,5 @@
-//
-// Endpoint.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 19/10/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import Foundation
import Network
diff --git a/WireGuard/WireGuard/Model/IPAddressRange.swift b/WireGuard/WireGuard/Model/IPAddressRange.swift
index ca4a7b9..3de30e5 100644
--- a/WireGuard/WireGuard/Model/IPAddressRange.swift
+++ b/WireGuard/WireGuard/Model/IPAddressRange.swift
@@ -1,10 +1,5 @@
-//
-// IPAddressRange.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 13/10/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import Foundation
import Network
diff --git a/WireGuard/WireGuard/UI/TunnelViewModel.swift b/WireGuard/WireGuard/UI/TunnelViewModel.swift
index eb6d849..d5ff112 100644
--- a/WireGuard/WireGuard/UI/TunnelViewModel.swift
+++ b/WireGuard/WireGuard/UI/TunnelViewModel.swift
@@ -1,10 +1,5 @@
-//
-// TunnelViewModel.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 23/10/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import UIKit
diff --git a/WireGuard/WireGuard/UI/iOS/AppDelegate.swift b/WireGuard/WireGuard/UI/iOS/AppDelegate.swift
index 028d27b..aff3e69 100644
--- a/WireGuard/WireGuard/UI/iOS/AppDelegate.swift
+++ b/WireGuard/WireGuard/UI/iOS/AppDelegate.swift
@@ -1,10 +1,5 @@
-//
-// AppDelegate.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 11/08/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import UIKit
diff --git a/WireGuard/WireGuard/UI/iOS/MainViewController.swift b/WireGuard/WireGuard/UI/iOS/MainViewController.swift
index e477f21..95f1cb9 100644
--- a/WireGuard/WireGuard/UI/iOS/MainViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/MainViewController.swift
@@ -1,10 +1,5 @@
-//
-// MainViewController.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 11/08/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import UIKit
diff --git a/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift b/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift
index 3ed1a86..0a1cb4d 100644
--- a/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift
@@ -1,10 +1,5 @@
-//
-// TunnelDetailTableViewController.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 17/10/18.
-// Copyright © 2018 Roopesh Chander. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import UIKit
diff --git a/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift b/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
index ee8b83b..df0697a 100644
--- a/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
@@ -1,10 +1,5 @@
-//
-// TunnelEditTableViewController.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 17/10/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import UIKit
diff --git a/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift b/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
index 35e90b0..ec8d381 100644
--- a/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
@@ -1,10 +1,5 @@
-//
-// TunnelsListTableViewController.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 12/10/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import UIKit
diff --git a/WireGuard/WireGuard/VPN/TunnelsManager.swift b/WireGuard/WireGuard/VPN/TunnelsManager.swift
index 2e43b5f..936f59f 100644
--- a/WireGuard/WireGuard/VPN/TunnelsManager.swift
+++ b/WireGuard/WireGuard/VPN/TunnelsManager.swift
@@ -1,10 +1,5 @@
-//
-// TunnelsManager.swift
-// WireGuard
-//
-// Created by Roopesh Chander on 13/10/18.
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All rights reserved.
import Foundation