From e2384e143c01f5eafb80e1355040d7d648e6fe71 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 2 Jan 2019 01:56:33 +0100 Subject: Update copyright Signed-off-by: Jason A. Donenfeld --- WireGuard/WireGuard/Base.lproj/Localizable.strings | 2 +- WireGuard/WireGuard/Crypto/Curve25519.swift | 2 +- WireGuard/WireGuard/Crypto/x25519.c | 2 +- WireGuard/WireGuard/LocalizationHelper.swift | 2 +- WireGuard/WireGuard/Tunnel/ActivateOnDemandSetting.swift | 2 +- WireGuard/WireGuard/Tunnel/MockTunnels.swift | 2 +- WireGuard/WireGuard/Tunnel/TunnelErrors.swift | 2 +- WireGuard/WireGuard/Tunnel/TunnelStatus.swift | 2 +- WireGuard/WireGuard/Tunnel/TunnelsManager.swift | 2 +- WireGuard/WireGuard/UI/TunnelViewModel.swift | 2 +- WireGuard/WireGuard/UI/iOS/AppDelegate.swift | 2 +- WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift | 2 +- WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift | 2 +- WireGuard/WireGuard/UI/iOS/View/BorderedTextButton.swift | 2 +- WireGuard/WireGuard/UI/iOS/View/ButtonCell.swift | 2 +- WireGuard/WireGuard/UI/iOS/View/CheckmarkCell.swift | 2 +- WireGuard/WireGuard/UI/iOS/View/KeyValueCell.swift | 2 +- WireGuard/WireGuard/UI/iOS/View/SwitchCell.swift | 2 +- WireGuard/WireGuard/UI/iOS/View/TunnelEditKeyValueCell.swift | 2 +- WireGuard/WireGuard/UI/iOS/View/TunnelListCell.swift | 2 +- WireGuard/WireGuard/UI/iOS/ViewController/MainViewController.swift | 2 +- WireGuard/WireGuard/UI/iOS/ViewController/QRScanViewController.swift | 2 +- .../WireGuard/UI/iOS/ViewController/SettingsTableViewController.swift | 2 +- .../UI/iOS/ViewController/TunnelDetailTableViewController.swift | 2 +- .../WireGuard/UI/iOS/ViewController/TunnelEditTableViewController.swift | 2 +- .../UI/iOS/ViewController/TunnelsListTableViewController.swift | 2 +- WireGuard/WireGuard/WireGuardAppError.swift | 2 +- WireGuard/WireGuard/WireGuardResult.swift | 2 +- WireGuard/WireGuard/ZipArchive/ZipArchive.swift | 2 +- WireGuard/WireGuard/ZipArchive/ZipExporter.swift | 2 +- WireGuard/WireGuard/ZipArchive/ZipImporter.swift | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) (limited to 'WireGuard/WireGuard') diff --git a/WireGuard/WireGuard/Base.lproj/Localizable.strings b/WireGuard/WireGuard/Base.lproj/Localizable.strings index 7815ddb..a2249b3 100644 --- a/WireGuard/WireGuard/Base.lproj/Localizable.strings +++ b/WireGuard/WireGuard/Base.lproj/Localizable.strings @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. // Generic alert action names diff --git a/WireGuard/WireGuard/Crypto/Curve25519.swift b/WireGuard/WireGuard/Crypto/Curve25519.swift index 53404cc..bd49e12 100644 --- a/WireGuard/WireGuard/Crypto/Curve25519.swift +++ b/WireGuard/WireGuard/Crypto/Curve25519.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/Crypto/x25519.c b/WireGuard/WireGuard/Crypto/x25519.c index bc94933..e0ff482 100644 --- a/WireGuard/WireGuard/Crypto/x25519.c +++ b/WireGuard/WireGuard/Crypto/x25519.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0+ * - * Copyright (C) 2015-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2015-2019 Jason A. Donenfeld . All Rights Reserved. * * Curve25519 ECDH functions, based on TweetNaCl but cleaned up. */ diff --git a/WireGuard/WireGuard/LocalizationHelper.swift b/WireGuard/WireGuard/LocalizationHelper.swift index ea4cc64..ed21090 100644 --- a/WireGuard/WireGuard/LocalizationHelper.swift +++ b/WireGuard/WireGuard/LocalizationHelper.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Foundation diff --git a/WireGuard/WireGuard/Tunnel/ActivateOnDemandSetting.swift b/WireGuard/WireGuard/Tunnel/ActivateOnDemandSetting.swift index 9071098..ffc0624 100644 --- a/WireGuard/WireGuard/Tunnel/ActivateOnDemandSetting.swift +++ b/WireGuard/WireGuard/Tunnel/ActivateOnDemandSetting.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import NetworkExtension diff --git a/WireGuard/WireGuard/Tunnel/MockTunnels.swift b/WireGuard/WireGuard/Tunnel/MockTunnels.swift index 746f508..b987799 100644 --- a/WireGuard/WireGuard/Tunnel/MockTunnels.swift +++ b/WireGuard/WireGuard/Tunnel/MockTunnels.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import NetworkExtension diff --git a/WireGuard/WireGuard/Tunnel/TunnelErrors.swift b/WireGuard/WireGuard/Tunnel/TunnelErrors.swift index 8e7f524..941ab61 100644 --- a/WireGuard/WireGuard/Tunnel/TunnelErrors.swift +++ b/WireGuard/WireGuard/Tunnel/TunnelErrors.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import NetworkExtension diff --git a/WireGuard/WireGuard/Tunnel/TunnelStatus.swift b/WireGuard/WireGuard/Tunnel/TunnelStatus.swift index 522e016..61c9e27 100644 --- a/WireGuard/WireGuard/Tunnel/TunnelStatus.swift +++ b/WireGuard/WireGuard/Tunnel/TunnelStatus.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Foundation import NetworkExtension diff --git a/WireGuard/WireGuard/Tunnel/TunnelsManager.swift b/WireGuard/WireGuard/Tunnel/TunnelsManager.swift index 426f3b2..4476c4a 100644 --- a/WireGuard/WireGuard/Tunnel/TunnelsManager.swift +++ b/WireGuard/WireGuard/Tunnel/TunnelsManager.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Foundation import NetworkExtension diff --git a/WireGuard/WireGuard/UI/TunnelViewModel.swift b/WireGuard/WireGuard/UI/TunnelViewModel.swift index 527ea7b..a16739d 100644 --- a/WireGuard/WireGuard/UI/TunnelViewModel.swift +++ b/WireGuard/WireGuard/UI/TunnelViewModel.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/AppDelegate.swift b/WireGuard/WireGuard/UI/iOS/AppDelegate.swift index 512963f..52c5b0a 100644 --- a/WireGuard/WireGuard/UI/iOS/AppDelegate.swift +++ b/WireGuard/WireGuard/UI/iOS/AppDelegate.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit import os.log diff --git a/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift b/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift index 0145fda..1746c81 100644 --- a/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift +++ b/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit import os.log diff --git a/WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift b/WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift index 21d9a07..bee1170 100644 --- a/WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift +++ b/WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/View/BorderedTextButton.swift b/WireGuard/WireGuard/UI/iOS/View/BorderedTextButton.swift index b1951e4..82e7b2d 100644 --- a/WireGuard/WireGuard/UI/iOS/View/BorderedTextButton.swift +++ b/WireGuard/WireGuard/UI/iOS/View/BorderedTextButton.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/View/ButtonCell.swift b/WireGuard/WireGuard/UI/iOS/View/ButtonCell.swift index 5d9ab92..6233315 100644 --- a/WireGuard/WireGuard/UI/iOS/View/ButtonCell.swift +++ b/WireGuard/WireGuard/UI/iOS/View/ButtonCell.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/View/CheckmarkCell.swift b/WireGuard/WireGuard/UI/iOS/View/CheckmarkCell.swift index 77cd501..3fdf1b9 100644 --- a/WireGuard/WireGuard/UI/iOS/View/CheckmarkCell.swift +++ b/WireGuard/WireGuard/UI/iOS/View/CheckmarkCell.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/View/KeyValueCell.swift b/WireGuard/WireGuard/UI/iOS/View/KeyValueCell.swift index 6f8d222..c77cab9 100644 --- a/WireGuard/WireGuard/UI/iOS/View/KeyValueCell.swift +++ b/WireGuard/WireGuard/UI/iOS/View/KeyValueCell.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/View/SwitchCell.swift b/WireGuard/WireGuard/UI/iOS/View/SwitchCell.swift index 7794e6b..758083f 100644 --- a/WireGuard/WireGuard/UI/iOS/View/SwitchCell.swift +++ b/WireGuard/WireGuard/UI/iOS/View/SwitchCell.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/View/TunnelEditKeyValueCell.swift b/WireGuard/WireGuard/UI/iOS/View/TunnelEditKeyValueCell.swift index 8c46d70..7c69a47 100644 --- a/WireGuard/WireGuard/UI/iOS/View/TunnelEditKeyValueCell.swift +++ b/WireGuard/WireGuard/UI/iOS/View/TunnelEditKeyValueCell.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/View/TunnelListCell.swift b/WireGuard/WireGuard/UI/iOS/View/TunnelListCell.swift index 294964a..81607de 100644 --- a/WireGuard/WireGuard/UI/iOS/View/TunnelListCell.swift +++ b/WireGuard/WireGuard/UI/iOS/View/TunnelListCell.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/MainViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/MainViewController.swift index 68723b0..ac04151 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/MainViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/MainViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/QRScanViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/QRScanViewController.swift index f74b401..9d04dfa 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/QRScanViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/QRScanViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import AVFoundation import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/SettingsTableViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/SettingsTableViewController.swift index c74b6e3..eced88d 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/SettingsTableViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/SettingsTableViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit import os.log diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift index 805a06b..9531c17 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelEditTableViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelEditTableViewController.swift index a8d504e..01a197f 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelEditTableViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelEditTableViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelsListTableViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelsListTableViewController.swift index 38b53ec..e6252d9 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelsListTableViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelsListTableViewController.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit import MobileCoreServices diff --git a/WireGuard/WireGuard/WireGuardAppError.swift b/WireGuard/WireGuard/WireGuardAppError.swift index 7f80240..7acc62c 100644 --- a/WireGuard/WireGuard/WireGuardAppError.swift +++ b/WireGuard/WireGuard/WireGuardAppError.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. protocol WireGuardAppError: Error { typealias AlertText = (title: String, message: String) diff --git a/WireGuard/WireGuard/WireGuardResult.swift b/WireGuard/WireGuard/WireGuardResult.swift index 97be312..e326f0c 100644 --- a/WireGuard/WireGuard/WireGuardResult.swift +++ b/WireGuard/WireGuard/WireGuardResult.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. enum WireGuardResult { case success(_ value: T) diff --git a/WireGuard/WireGuard/ZipArchive/ZipArchive.swift b/WireGuard/WireGuard/ZipArchive/ZipArchive.swift index df0ec73..9e28dc2 100644 --- a/WireGuard/WireGuard/ZipArchive/ZipArchive.swift +++ b/WireGuard/WireGuard/ZipArchive/ZipArchive.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import Foundation diff --git a/WireGuard/WireGuard/ZipArchive/ZipExporter.swift b/WireGuard/WireGuard/ZipArchive/ZipExporter.swift index 1f7c2da..e5b993a 100644 --- a/WireGuard/WireGuard/ZipArchive/ZipExporter.swift +++ b/WireGuard/WireGuard/ZipArchive/ZipExporter.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit diff --git a/WireGuard/WireGuard/ZipArchive/ZipImporter.swift b/WireGuard/WireGuard/ZipArchive/ZipImporter.swift index 18a00e8..ac897c7 100644 --- a/WireGuard/WireGuard/ZipArchive/ZipImporter.swift +++ b/WireGuard/WireGuard/ZipArchive/ZipImporter.swift @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright © 2018 WireGuard LLC. All Rights Reserved. +// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved. import UIKit -- cgit v1.2.3-59-g8ed1b