summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorJakob Borg <jakob@nym.se>2014-06-01 22:50:14 +0200
committerJakob Borg <jakob@nym.se>2014-06-01 22:50:14 +0200
commit843fd9bdbde55c382b66a13017a6461e9592d83d (patch)
treeaddc942727b1b7d79d85bf2037b6c0d9c0214c64 /cmd
parent26c33c4a69bed46744a1af76be6280844b7432f3 (diff)
Add license header
Diffstat (limited to 'cmd')
-rw-r--r--cmd/assets/assets.go4
-rw-r--r--cmd/stcli/main.go4
-rw-r--r--cmd/stcli/tls.go4
-rw-r--r--cmd/stpidx/main.go4
-rw-r--r--cmd/syncthing/debug.go4
-rw-r--r--cmd/syncthing/gui.go4
-rw-r--r--cmd/syncthing/gui_solaris.go4
-rw-r--r--cmd/syncthing/gui_unix.go4
-rw-r--r--cmd/syncthing/limitedwriter.go4
-rw-r--r--cmd/syncthing/locktrace.go4
-rw-r--r--cmd/syncthing/main.go4
-rw-r--r--cmd/syncthing/openurl_unix.go4
-rw-r--r--cmd/syncthing/openurl_windows.go4
-rw-r--r--cmd/syncthing/tls.go4
-rw-r--r--cmd/syncthing/upgrade.go4
-rw-r--r--cmd/syncthing/upgrade_test.go4
-rw-r--r--cmd/syncthing/usage.go4
17 files changed, 68 insertions, 0 deletions
diff --git a/cmd/assets/assets.go b/cmd/assets/assets.go
index f66db81b9f..3518485390 100644
--- a/cmd/assets/assets.go
+++ b/cmd/assets/assets.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/stcli/main.go b/cmd/stcli/main.go
index f9cbecdc69..161efae84d 100644
--- a/cmd/stcli/main.go
+++ b/cmd/stcli/main.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/stcli/tls.go b/cmd/stcli/tls.go
index df71d1fc54..1d89f85899 100644
--- a/cmd/stcli/tls.go
+++ b/cmd/stcli/tls.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/stpidx/main.go b/cmd/stpidx/main.go
index 132a894a78..fd75ecface 100644
--- a/cmd/stpidx/main.go
+++ b/cmd/stpidx/main.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/syncthing/debug.go b/cmd/syncthing/debug.go
index e1762576f5..9b6dcf2eff 100644
--- a/cmd/syncthing/debug.go
+++ b/cmd/syncthing/debug.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/syncthing/gui.go b/cmd/syncthing/gui.go
index 0fa8944496..e6d8b21faa 100644
--- a/cmd/syncthing/gui.go
+++ b/cmd/syncthing/gui.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/syncthing/gui_solaris.go b/cmd/syncthing/gui_solaris.go
index e7850b2005..a2c5685946 100644
--- a/cmd/syncthing/gui_solaris.go
+++ b/cmd/syncthing/gui_solaris.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
//+build solaris
package main
diff --git a/cmd/syncthing/gui_unix.go b/cmd/syncthing/gui_unix.go
index 9d463e4986..3fc7876640 100644
--- a/cmd/syncthing/gui_unix.go
+++ b/cmd/syncthing/gui_unix.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
//+build !windows,!solaris
package main
diff --git a/cmd/syncthing/limitedwriter.go b/cmd/syncthing/limitedwriter.go
index 1734609ebe..895936abb3 100644
--- a/cmd/syncthing/limitedwriter.go
+++ b/cmd/syncthing/limitedwriter.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/syncthing/locktrace.go b/cmd/syncthing/locktrace.go
index 4b662a208b..a912eea40b 100644
--- a/cmd/syncthing/locktrace.go
+++ b/cmd/syncthing/locktrace.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
//+build locktrace
package main
diff --git a/cmd/syncthing/main.go b/cmd/syncthing/main.go
index 6546d84317..b2c6018106 100644
--- a/cmd/syncthing/main.go
+++ b/cmd/syncthing/main.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/syncthing/openurl_unix.go b/cmd/syncthing/openurl_unix.go
index da60f51ef8..69b5af1873 100644
--- a/cmd/syncthing/openurl_unix.go
+++ b/cmd/syncthing/openurl_unix.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
// +build !windows
package main
diff --git a/cmd/syncthing/openurl_windows.go b/cmd/syncthing/openurl_windows.go
index 94285f6996..9d2c91254d 100644
--- a/cmd/syncthing/openurl_windows.go
+++ b/cmd/syncthing/openurl_windows.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
// +build windows
package main
diff --git a/cmd/syncthing/tls.go b/cmd/syncthing/tls.go
index 148033d544..51231cf13e 100644
--- a/cmd/syncthing/tls.go
+++ b/cmd/syncthing/tls.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/syncthing/upgrade.go b/cmd/syncthing/upgrade.go
index 545080dbf8..2ac2843b57 100644
--- a/cmd/syncthing/upgrade.go
+++ b/cmd/syncthing/upgrade.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (
diff --git a/cmd/syncthing/upgrade_test.go b/cmd/syncthing/upgrade_test.go
index 43e3728ae4..d52d5a2acc 100644
--- a/cmd/syncthing/upgrade_test.go
+++ b/cmd/syncthing/upgrade_test.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import "testing"
diff --git a/cmd/syncthing/usage.go b/cmd/syncthing/usage.go
index 3f0b9562b4..52ad4e94b8 100644
--- a/cmd/syncthing/usage.go
+++ b/cmd/syncthing/usage.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
+// Use of this source code is governed by an MIT-style license that can be
+// found in the LICENSE file.
+
package main
import (