From 4a6c4110c7e77f4ab8a3379f1128d9aa63bd6406 Mon Sep 17 00:00:00 2001 From: Donatas Kucinskas Date: Thu, 17 May 2018 16:43:59 +0300 Subject: [PATCH 1/4] Format code using go fmt --- cmd/commands/client/command_client.go | 8 ++++---- cmd/commands/server/command_server_test.go | 16 ++++++++-------- cmd/interrupts.go | 2 +- cmd/mysterium_server/mysterium_server.go | 2 +- communication/nats/discovery/config.go | 8 ++++---- location/cache.go | 6 +++--- location/cache_test.go | 2 +- location/detector.go | 4 ++-- location/detector_test.go | 2 +- location/interface.go | 2 +- location/location.go | 2 +- location/resolver_fake.go | 8 ++++---- nat/service_iptables.go | 7 +++---- openvpn/discovery/factory.go | 2 +- openvpn/discovery/factory_test.go | 4 ++-- .../client/bytescount/stats_sender.go | 6 +++--- server/dto/session_stats.go | 6 +++--- tequilapi/endpoints/location.go | 14 +++++++------- tequilapi/endpoints/location_test.go | 8 ++++---- 19 files changed, 54 insertions(+), 55 deletions(-) diff --git a/cmd/commands/client/command_client.go b/cmd/commands/client/command_client.go index 4ce40649b..6a74f5a23 100644 --- a/cmd/commands/client/command_client.go +++ b/cmd/commands/client/command_client.go @@ -98,10 +98,10 @@ func NewCommandWith( //Command represent entrypoint for Mysterium client with top level components type Command struct { - connectionManager connection.Manager - httpAPIServer tequilapi.APIServer - checkOpenvpn func() error - originalLocationCache location.Cache + connectionManager connection.Manager + httpAPIServer tequilapi.APIServer + checkOpenvpn func() error + originalLocationCache location.Cache } // Start starts Tequilapi service, fetches location diff --git a/cmd/commands/server/command_server_test.go b/cmd/commands/server/command_server_test.go index 0aa42de9c..c3eb728be 100644 --- a/cmd/commands/server/command_server_test.go +++ b/cmd/commands/server/command_server_test.go @@ -4,13 +4,13 @@ import ( "github.com/mysterium/node/server" dto_discovery "github.com/mysterium/node/service_discovery/dto" "github.com/stretchr/testify/assert" + "sync" "testing" "time" - "sync" ) var ( - activeProposal = dto_discovery.ServiceProposal{} + activeProposal = dto_discovery.ServiceProposal{} ) func TestProposalUnregisteredWhenPingerClosed(t *testing.T) { @@ -30,12 +30,12 @@ func TestProposalUnregisteredWhenPingerClosed(t *testing.T) { close(stopPinger) //causes proposal to be unregistered select { - case _ = <-finished: - proposals, err := fakeDiscoveryClient.FindProposals(activeProposal.ProviderID) + case _ = <-finished: + proposals, err := fakeDiscoveryClient.FindProposals(activeProposal.ProviderID) - assert.NoError(t, err) - assert.Len(t, proposals, 0) - case <-time.After(500 * time.Millisecond): - assert.Fail(t, "failed to stop pinger") + assert.NoError(t, err) + assert.Len(t, proposals, 0) + case <-time.After(500 * time.Millisecond): + assert.Fail(t, "failed to stop pinger") } } diff --git a/cmd/interrupts.go b/cmd/interrupts.go index 67d64120b..7af40de04 100644 --- a/cmd/interrupts.go +++ b/cmd/interrupts.go @@ -3,8 +3,8 @@ package cmd import ( "os" "os/signal" - "syscall" "sync" + "syscall" ) // ApplicationStopper stops application and performs required cleanup tasks diff --git a/cmd/mysterium_server/mysterium_server.go b/cmd/mysterium_server/mysterium_server.go index b90284ce5..4fe2461b8 100644 --- a/cmd/mysterium_server/mysterium_server.go +++ b/cmd/mysterium_server/mysterium_server.go @@ -2,10 +2,10 @@ package main import ( "fmt" + "github.com/mysterium/node/cmd" "github.com/mysterium/node/cmd/commands/server" _ "github.com/mysterium/node/logconfig" "os" - "github.com/mysterium/node/cmd" ) func main() { diff --git a/communication/nats/discovery/config.go b/communication/nats/discovery/config.go index e37ca3fc8..a04767408 100644 --- a/communication/nats/discovery/config.go +++ b/communication/nats/discovery/config.go @@ -4,8 +4,8 @@ import "time" // Broker Constants const ( - BrokerPort = 4222 - BrokerMaxReconnect = -1 - BrokerReconnectWait = 4 * time.Second - BrokerTimeout = 5 * time.Second + BrokerPort = 4222 + BrokerMaxReconnect = -1 + BrokerReconnectWait = 4 * time.Second + BrokerTimeout = 5 * time.Second ) diff --git a/location/cache.go b/location/cache.go index bd18b5427..3b8176527 100644 --- a/location/cache.go +++ b/location/cache.go @@ -2,7 +2,7 @@ package location type cache struct { locationDetector Detector - location Location + location Location } // NewLocationCache constructs Cache @@ -13,12 +13,12 @@ func NewLocationCache(locationDetector Detector) Cache { } // Gets location from cache -func (lc *cache) Get() (Location) { +func (lc *cache) Get() Location { return lc.location } // Stores location to cache -func (lc *cache) RefreshAndGet() (Location, error) { +func (lc *cache) RefreshAndGet() (Location, error) { location, err := lc.locationDetector.DetectLocation() lc.location = location return lc.location, err diff --git a/location/cache_test.go b/location/cache_test.go index 7fe584221..4aa2102e3 100644 --- a/location/cache_test.go +++ b/location/cache_test.go @@ -1,10 +1,10 @@ package location import ( - "testing" "errors" "github.com/mysterium/node/ip" "github.com/stretchr/testify/assert" + "testing" ) func TestLocationCacheFirstCall(t *testing.T) { diff --git a/location/detector.go b/location/detector.go index f94bc2bff..bcc584519 100644 --- a/location/detector.go +++ b/location/detector.go @@ -5,7 +5,7 @@ import ( ) type detector struct { - ipResolver ip.Resolver + ipResolver ip.Resolver locationResolver Resolver } @@ -17,7 +17,7 @@ func NewDetector(ipResolver ip.Resolver, databasePath string) Detector { // NewDetectorWithLocationResolver constructs Detector func NewDetectorWithLocationResolver(ipResolver ip.Resolver, locationResolver Resolver) Detector { return &detector{ - ipResolver: ipResolver, + ipResolver: ipResolver, locationResolver: locationResolver, } } diff --git a/location/detector_test.go b/location/detector_test.go index 09fa1887d..126e44435 100644 --- a/location/detector_test.go +++ b/location/detector_test.go @@ -1,10 +1,10 @@ package location import ( - "testing" "errors" "github.com/mysterium/node/ip" "github.com/stretchr/testify/assert" + "testing" ) func TestNewDetector(t *testing.T) { diff --git a/location/interface.go b/location/interface.go index 97d337e02..a27e6bdaa 100644 --- a/location/interface.go +++ b/location/interface.go @@ -12,6 +12,6 @@ type Detector interface { // Cache allows caching location type Cache interface { - Get() (Location) + Get() Location RefreshAndGet() (Location, error) } diff --git a/location/location.go b/location/location.go index f4a84b260..f54b14451 100644 --- a/location/location.go +++ b/location/location.go @@ -1,6 +1,6 @@ package location type Location struct { - IP string `json:"ip"` + IP string `json:"ip"` Country string `json:"country"` } diff --git a/location/resolver_fake.go b/location/resolver_fake.go index f92caba31..62b9252c5 100644 --- a/location/resolver_fake.go +++ b/location/resolver_fake.go @@ -2,22 +2,22 @@ package location type resolverFake struct { country string - error error + error error } // NewResolverFake returns resolverFake which uses statically entered value func NewResolverFake(country string) *resolverFake { return &resolverFake{ country: country, - error: nil, + error: nil, } } // NewFailingResolverFake returns resolverFake with entered error func NewFailingResolverFake(err error) *resolverFake { return &resolverFake{ - country: "", - error: err, + country: "", + error: err, } } diff --git a/nat/service_iptables.go b/nat/service_iptables.go index 24f7370c8..28f7a6ed7 100644 --- a/nat/service_iptables.go +++ b/nat/service_iptables.go @@ -11,7 +11,7 @@ import ( const NatLogPrefix = "[nat] " type serviceIPTables struct { - rules []RuleForwarding + rules []RuleForwarding forward bool } @@ -44,7 +44,6 @@ func (service *serviceIPTables) Stop() error { return nil } - func (service *serviceIPTables) isIPForwardingEnabled() (enabled bool, err error) { out, err := exec.Command("sysctl", "-n", "net.ipv4.ip_forward").CombinedOutput() if err != nil { @@ -53,7 +52,7 @@ func (service *serviceIPTables) isIPForwardingEnabled() (enabled bool, err error if strings.TrimSpace(string(out)) == "1" { log.Info(NatLogPrefix, "IP forwarding already enabled") - return true,nil + return true, nil } return false, nil } @@ -61,7 +60,7 @@ func (service *serviceIPTables) isIPForwardingEnabled() (enabled bool, err error func (service *serviceIPTables) enableIPForwarding() (err error) { enabled, err := service.isIPForwardingEnabled() - if err != nil { + if err != nil { return err } diff --git a/openvpn/discovery/factory.go b/openvpn/discovery/factory.go index e816fbdb0..e4e0bfa2e 100644 --- a/openvpn/discovery/factory.go +++ b/openvpn/discovery/factory.go @@ -23,7 +23,7 @@ func NewServiceProposalWithLocation( Location: serviceLocation, LocationOriginate: serviceLocation, SessionBandwidth: dto.Bandwidth(10 * datasize.MB), - Protocol: protocol, + Protocol: protocol, }, PaymentMethodType: dto.PaymentMethodPerTime, PaymentMethod: dto.PaymentPerTime{ diff --git a/openvpn/discovery/factory_test.go b/openvpn/discovery/factory_test.go index e27a57d48..8017cc281 100644 --- a/openvpn/discovery/factory_test.go +++ b/openvpn/discovery/factory_test.go @@ -16,7 +16,7 @@ var ( Type: "type1", } locationLTTelia = dto_discovery.Location{"LT", "Vilnius", "AS8764"} - protocol = "tcp" + protocol = "tcp" ) func Test_NewServiceProposalWithLocation(t *testing.T) { @@ -32,7 +32,7 @@ func Test_NewServiceProposalWithLocation(t *testing.T) { Location: locationLTTelia, LocationOriginate: locationLTTelia, SessionBandwidth: 83886080, - Protocol: "tcp", + Protocol: "tcp", }, proposal.ServiceDefinition, ) diff --git a/openvpn/middlewares/client/bytescount/stats_sender.go b/openvpn/middlewares/client/bytescount/stats_sender.go index 933156113..e2932b5ba 100644 --- a/openvpn/middlewares/client/bytescount/stats_sender.go +++ b/openvpn/middlewares/client/bytescount/stats_sender.go @@ -17,9 +17,9 @@ func NewSessionStatsSender(mysteriumClient server.Client, sessionID session.Sess return mysteriumClient.SendSessionStats( sessionIDString, dto.SessionStats{ - BytesSent: sessionStats.BytesSent, - BytesReceived: sessionStats.BytesReceived, - ProviderID: providerID.Address, + BytesSent: sessionStats.BytesSent, + BytesReceived: sessionStats.BytesReceived, + ProviderID: providerID.Address, ConsumerCountry: ConsumerCountry, }, signer, diff --git a/server/dto/session_stats.go b/server/dto/session_stats.go index f9491b25d..102abd7e2 100644 --- a/server/dto/session_stats.go +++ b/server/dto/session_stats.go @@ -2,8 +2,8 @@ package dto // SessionStats mapped to json structure type SessionStats struct { - BytesSent int `json:"bytes_sent"` - BytesReceived int `json:"bytes_received"` - ProviderID string `json:"provider_id"` + BytesSent int `json:"bytes_sent"` + BytesReceived int `json:"bytes_received"` + ProviderID string `json:"provider_id"` ConsumerCountry string `json:"consumer_country"` } diff --git a/tequilapi/endpoints/location.go b/tequilapi/endpoints/location.go index ebb80d8a1..721d8c1fd 100644 --- a/tequilapi/endpoints/location.go +++ b/tequilapi/endpoints/location.go @@ -2,16 +2,16 @@ package endpoints import ( "github.com/julienschmidt/httprouter" + "github.com/mysterium/node/client/connection" "github.com/mysterium/node/location" "github.com/mysterium/node/tequilapi/utils" "net/http" - "github.com/mysterium/node/client/connection" ) // LocationEndpoint struct represents /location resource and it's subresources type LocationEndpoint struct { - manager connection.Manager - locationDetector location.Detector + manager connection.Manager + locationDetector location.Detector originalLocationCache location.Cache } @@ -19,8 +19,8 @@ type LocationEndpoint struct { func NewLocationEndpoint(manager connection.Manager, locationDetector location.Detector, originalLocationCache location.Cache) *LocationEndpoint { return &LocationEndpoint{ - manager: manager, - locationDetector: locationDetector, + manager: manager, + locationDetector: locationDetector, originalLocationCache: originalLocationCache, } } @@ -43,10 +43,10 @@ func (le *LocationEndpoint) GetLocation(writer http.ResponseWriter, request *htt response := struct { Original location.Location `json:"original"` - Current location.Location `json:"current"` + Current location.Location `json:"current"` }{ Original: originalLocation, - Current: currentLocation, + Current: currentLocation, } utils.WriteAsJSON(response, writer) } diff --git a/tequilapi/endpoints/location_test.go b/tequilapi/endpoints/location_test.go index fa26719dd..0009b0285 100644 --- a/tequilapi/endpoints/location_test.go +++ b/tequilapi/endpoints/location_test.go @@ -2,19 +2,19 @@ package endpoints import ( "github.com/julienschmidt/httprouter" + "github.com/mysterium/node/client/connection" + "github.com/mysterium/node/identity" "github.com/mysterium/node/ip" + "github.com/mysterium/node/location" "github.com/stretchr/testify/assert" "net/http" "net/http/httptest" "strings" "testing" - "github.com/mysterium/node/location" - "github.com/mysterium/node/client/connection" - "github.com/mysterium/node/identity" ) type fakeManagerForLocation struct { - onStatusReturn connection.ConnectionStatus + onStatusReturn connection.ConnectionStatus } func (fm *fakeManagerForLocation) Connect(consumerID identity.Identity, providerID identity.Identity) error { From 8c1ba8ad08ad7c7b7c3f5c8cfd353b23bdec1e30 Mon Sep 17 00:00:00 2001 From: Donatas Kucinskas Date: Thu, 17 May 2018 16:44:38 +0300 Subject: [PATCH 2/4] Add copyright header to all go files --- client/connection/interface.go | 17 +++++++++++++++++ client/connection/manager.go | 17 +++++++++++++++++ client/connection/manager_test.go | 17 +++++++++++++++++ client/connection/openvpn.go | 17 +++++++++++++++++ client/connection/status.go | 17 +++++++++++++++++ client/promise/dto/promise_body.go | 17 +++++++++++++++++ client/promise/dto/signature.go | 17 +++++++++++++++++ client/promise/dto/signed_promise.go | 17 +++++++++++++++++ client/promise/promise_test.go | 17 +++++++++++++++++ cmd/commands/cli/command_cli.go | 17 +++++++++++++++++ cmd/commands/cli/io.go | 17 +++++++++++++++++ cmd/commands/client/command_client.go | 17 +++++++++++++++++ cmd/commands/client/options.go | 17 +++++++++++++++++ cmd/commands/server/command_server.go | 17 +++++++++++++++++ cmd/commands/server/command_server_test.go | 17 +++++++++++++++++ cmd/commands/server/factory.go | 17 +++++++++++++++++ cmd/commands/server/identity/handler.go | 17 +++++++++++++++++ cmd/commands/server/identity/handler_fake.go | 17 +++++++++++++++++ cmd/commands/server/identity/handler_test.go | 17 +++++++++++++++++ cmd/commands/server/identity/interface.go | 17 +++++++++++++++++ cmd/commands/server/identity/loading.go | 17 +++++++++++++++++ cmd/commands/server/identity/loading_test.go | 17 +++++++++++++++++ cmd/commands/server/options.go | 17 +++++++++++++++++ cmd/config.go | 17 +++++++++++++++++ cmd/directory.go | 17 +++++++++++++++++ cmd/interrupts.go | 17 +++++++++++++++++ cmd/mysterium_client/mysterium_client.go | 17 +++++++++++++++++ cmd/mysterium_server/mysterium_server.go | 17 +++++++++++++++++ cmd/stopper.go | 17 +++++++++++++++++ cmd/stopper_test.go | 17 +++++++++++++++++ communication/codec.go | 17 +++++++++++++++++ communication/codec_bytes.go | 17 +++++++++++++++++ communication/codec_bytes_test.go | 17 +++++++++++++++++ communication/codec_fake.go | 17 +++++++++++++++++ communication/codec_json.go | 17 +++++++++++++++++ communication/codec_json_test.go | 17 +++++++++++++++++ communication/interface.go | 17 +++++++++++++++++ communication/message.go | 17 +++++++++++++++++ communication/nats/connection_fake.go | 17 +++++++++++++++++ communication/nats/connection_interface.go | 17 +++++++++++++++++ communication/nats/dialog/codec_secured.go | 17 +++++++++++++++++ communication/nats/dialog/codec_secured_test.go | 17 +++++++++++++++++ communication/nats/dialog/create_consumer.go | 17 +++++++++++++++++ communication/nats/dialog/create_producer.go | 17 +++++++++++++++++ communication/nats/dialog/dialog.go | 17 +++++++++++++++++ communication/nats/dialog/dialog_establisher.go | 17 +++++++++++++++++ .../nats/dialog/dialog_establisher_test.go | 17 +++++++++++++++++ communication/nats/dialog/dialog_waiter.go | 17 +++++++++++++++++ communication/nats/dialog/dialog_waiter_test.go | 17 +++++++++++++++++ communication/nats/dialog/dto.go | 17 +++++++++++++++++ communication/nats/dialog/dto_request_test.go | 17 +++++++++++++++++ communication/nats/dialog/dto_response_test.go | 17 +++++++++++++++++ communication/nats/discovery/address.go | 17 +++++++++++++++++ communication/nats/discovery/address_test.go | 17 +++++++++++++++++ communication/nats/discovery/bootstrap.go | 17 +++++++++++++++++ communication/nats/discovery/bootstrap_test.go | 17 +++++++++++++++++ communication/nats/discovery/config.go | 17 +++++++++++++++++ communication/nats/discovery/contact.go | 17 +++++++++++++++++ communication/nats/discovery/contact_test.go | 17 +++++++++++++++++ communication/nats/message_bytes_test.go | 17 +++++++++++++++++ communication/nats/message_custom_test.go | 17 +++++++++++++++++ communication/nats/receiver.go | 17 +++++++++++++++++ communication/nats/receiver_test.go | 17 +++++++++++++++++ communication/nats/request_bytes_test.go | 17 +++++++++++++++++ communication/nats/request_custom_test.go | 17 +++++++++++++++++ communication/nats/sender.go | 17 +++++++++++++++++ communication/nats/sender_test.go | 17 +++++++++++++++++ communication/request.go | 17 +++++++++++++++++ datasize/bitsize.go | 17 +++++++++++++++++ datasize/bitsize_test.go | 17 +++++++++++++++++ e2e/connection_test.go | 17 +++++++++++++++++ identity/cache.go | 17 +++++++++++++++++ identity/cache_fake.go | 17 +++++++++++++++++ identity/cache_interface.go | 17 +++++++++++++++++ identity/cache_test.go | 17 +++++++++++++++++ identity/extractor.go | 17 +++++++++++++++++ identity/extractor_test.go | 17 +++++++++++++++++ identity/identity.go | 17 +++++++++++++++++ identity/integration_test.go | 17 +++++++++++++++++ identity/keystore_fake.go | 17 +++++++++++++++++ identity/keystore_interface.go | 17 +++++++++++++++++ identity/manager.go | 17 +++++++++++++++++ identity/manager_fake.go | 17 +++++++++++++++++ identity/manager_interface.go | 17 +++++++++++++++++ identity/manager_test.go | 17 +++++++++++++++++ identity/signature.go | 17 +++++++++++++++++ identity/signer.go | 17 +++++++++++++++++ identity/signer_fake.go | 17 +++++++++++++++++ identity/signer_test.go | 17 +++++++++++++++++ identity/verifier.go | 17 +++++++++++++++++ identity/verifier_fake.go | 17 +++++++++++++++++ identity/verifier_test.go | 17 +++++++++++++++++ ip/dto.go | 17 +++++++++++++++++ ip/fake_resolver.go | 17 +++++++++++++++++ ip/resolver.go | 17 +++++++++++++++++ ip/rest_resolver.go | 17 +++++++++++++++++ location/cache.go | 17 +++++++++++++++++ location/cache_test.go | 17 +++++++++++++++++ location/detector.go | 17 +++++++++++++++++ location/detector_test.go | 17 +++++++++++++++++ location/interface.go | 17 +++++++++++++++++ location/location.go | 17 +++++++++++++++++ location/resolver.go | 17 +++++++++++++++++ location/resolver_fake.go | 17 +++++++++++++++++ location/resolver_test.go | 17 +++++++++++++++++ logconfig/config.go | 17 +++++++++++++++++ money/currency.go | 17 +++++++++++++++++ money/money.go | 17 +++++++++++++++++ money/money_test.go | 17 +++++++++++++++++ nat/factory_darwin.go | 17 +++++++++++++++++ nat/factory_linux.go | 17 +++++++++++++++++ nat/factory_windows.go | 17 +++++++++++++++++ nat/interface.go | 17 +++++++++++++++++ nat/service_fake.go | 17 +++++++++++++++++ nat/service_iptables.go | 17 +++++++++++++++++ openvpn/bootstrap.go | 17 +++++++++++++++++ openvpn/check.go | 17 +++++++++++++++++ openvpn/check_test.go | 17 +++++++++++++++++ openvpn/client.go | 17 +++++++++++++++++ openvpn/client_config.go | 17 +++++++++++++++++ openvpn/config.go | 17 +++++++++++++++++ openvpn/config_validator.go | 17 +++++++++++++++++ openvpn/config_validator_test.go | 17 +++++++++++++++++ openvpn/discovery/dto/bandwidth.go | 17 +++++++++++++++++ openvpn/discovery/dto/bandwidth_test.go | 17 +++++++++++++++++ .../discovery/dto/payment_method_per_bytes.go | 17 +++++++++++++++++ .../dto/payment_method_per_bytes_test.go | 17 +++++++++++++++++ .../discovery/dto/payment_method_per_time.go | 17 +++++++++++++++++ .../dto/payment_method_per_time_test.go | 17 +++++++++++++++++ openvpn/discovery/dto/service_definition.go | 17 +++++++++++++++++ .../discovery/dto/service_definition_test.go | 17 +++++++++++++++++ openvpn/discovery/factory.go | 17 +++++++++++++++++ openvpn/discovery/factory_test.go | 17 +++++++++++++++++ openvpn/discovery/service_poposal_test.go | 17 +++++++++++++++++ openvpn/factory.go | 17 +++++++++++++++++ openvpn/management/connection.go | 17 +++++++++++++++++ openvpn/management/connection_mock.go | 17 +++++++++++++++++ openvpn/management/connection_test.go | 17 +++++++++++++++++ openvpn/management/listener.go | 17 +++++++++++++++++ openvpn/management/management.go | 17 +++++++++++++++++ openvpn/middlewares/client/auth/middleware.go | 17 +++++++++++++++++ .../middlewares/client/auth/middleware_test.go | 17 +++++++++++++++++ .../bytescount/composite_stats_handler.go | 17 +++++++++++++++++ .../bytescount/composite_stats_handler_test.go | 17 +++++++++++++++++ openvpn/middlewares/client/bytescount/dto.go | 17 +++++++++++++++++ .../client/bytescount/fake_stats_handler.go | 17 +++++++++++++++++ .../middlewares/client/bytescount/middleware.go | 17 +++++++++++++++++ .../client/bytescount/middleware_test.go | 17 +++++++++++++++++ .../bytescount/selective_stats_handler.go | 17 +++++++++++++++++ .../bytescount/selective_stats_handler_test.go | 17 +++++++++++++++++ .../client/bytescount/stats_keeper.go | 17 +++++++++++++++++ .../client/bytescount/stats_keeper_test.go | 17 +++++++++++++++++ .../client/bytescount/stats_saver.go | 17 +++++++++++++++++ .../client/bytescount/stats_saver_test.go | 17 +++++++++++++++++ .../client/bytescount/stats_sender.go | 17 +++++++++++++++++ openvpn/middlewares/server/auth/middleware.go | 17 +++++++++++++++++ .../middlewares/server/auth/middleware_test.go | 17 +++++++++++++++++ openvpn/middlewares/server/auth/parsing.go | 17 +++++++++++++++++ openvpn/middlewares/server/auth/parsing_test.go | 17 +++++++++++++++++ openvpn/middlewares/state/middleware.go | 17 +++++++++++++++++ openvpn/middlewares/state/middleware_test.go | 17 +++++++++++++++++ openvpn/option_file.go | 17 +++++++++++++++++ openvpn/option_file_test.go | 17 +++++++++++++++++ openvpn/option_flag.go | 17 +++++++++++++++++ openvpn/option_flag_test.go | 17 +++++++++++++++++ openvpn/option_param.go | 17 +++++++++++++++++ openvpn/option_param_test.go | 17 +++++++++++++++++ openvpn/process.go | 17 +++++++++++++++++ openvpn/process_test.go | 17 +++++++++++++++++ openvpn/serializer_cli.go | 17 +++++++++++++++++ openvpn/serializer_cli_test.go | 17 +++++++++++++++++ openvpn/serializer_file.go | 17 +++++++++++++++++ openvpn/serializer_file_test.go | 17 +++++++++++++++++ openvpn/server.go | 17 +++++++++++++++++ openvpn/server_config.go | 17 +++++++++++++++++ openvpn/session/authentication.go | 17 +++++++++++++++++ openvpn/session/authentication_test.go | 17 +++++++++++++++++ openvpn/state.go | 17 +++++++++++++++++ openvpn/tls/ca.go | 17 +++++++++++++++++ openvpn/tls/ca_test.go | 17 +++++++++++++++++ openvpn/tls/cert_config.go | 17 +++++++++++++++++ openvpn/tls/ta.go | 17 +++++++++++++++++ openvpn/tls/ta_test.go | 17 +++++++++++++++++ openvpn/tls/tls.go | 17 +++++++++++++++++ openvpn/tls/tls_test.go | 17 +++++++++++++++++ openvpn/utils.go | 17 +++++++++++++++++ requests/request.go | 17 +++++++++++++++++ requests/request_test.go | 17 +++++++++++++++++ server/dto/create_identity.go | 17 +++++++++++++++++ server/dto/node_register_request.go | 17 +++++++++++++++++ server/dto/node_stats_request.go | 17 +++++++++++++++++ server/dto/proposal_unregister_request.go | 17 +++++++++++++++++ server/dto/proposals_request.go | 17 +++++++++++++++++ server/dto/proposals_response.go | 17 +++++++++++++++++ server/dto/session_stats.go | 17 +++++++++++++++++ server/interface.go | 17 +++++++++++++++++ server/mysterium_api.go | 17 +++++++++++++++++ server/mysterium_api_fake.go | 17 +++++++++++++++++ server/mysterium_api_test.go | 17 +++++++++++++++++ server/response.go | 17 +++++++++++++++++ server/response_test.go | 17 +++++++++++++++++ service_discovery/dto/contact.go | 17 +++++++++++++++++ service_discovery/dto/location.go | 17 +++++++++++++++++ service_discovery/dto/location_test.go | 17 +++++++++++++++++ service_discovery/dto/payment_method.go | 17 +++++++++++++++++ service_discovery/dto/service_definition.go | 17 +++++++++++++++++ service_discovery/dto/service_proposal.go | 17 +++++++++++++++++ service_discovery/dto/service_proposal_test.go | 17 +++++++++++++++++ session/create_consumer.go | 17 +++++++++++++++++ session/create_consumer_test.go | 17 +++++++++++++++++ session/create_producer.go | 17 +++++++++++++++++ session/dialog_handler.go | 17 +++++++++++++++++ session/dto.go | 17 +++++++++++++++++ session/generator.go | 17 +++++++++++++++++ session/generator_fake.go | 17 +++++++++++++++++ session/generator_test.go | 17 +++++++++++++++++ session/interface.go | 17 +++++++++++++++++ session/manager.go | 17 +++++++++++++++++ session/manager_fake.go | 17 +++++++++++++++++ session/manager_test.go | 17 +++++++++++++++++ tequilapi/api_test.go | 17 +++++++++++++++++ tequilapi/api_test_utils.go | 17 +++++++++++++++++ tequilapi/client/client.go | 17 +++++++++++++++++ tequilapi/client/dto.go | 17 +++++++++++++++++ tequilapi/client/http_client.go | 17 +++++++++++++++++ tequilapi/endpoints/connection.go | 17 +++++++++++++++++ tequilapi/endpoints/connection_test.go | 17 +++++++++++++++++ tequilapi/endpoints/health_check.go | 17 +++++++++++++++++ tequilapi/endpoints/health_check_test.go | 17 +++++++++++++++++ tequilapi/endpoints/identities.go | 17 +++++++++++++++++ tequilapi/endpoints/identities_test.go | 17 +++++++++++++++++ tequilapi/endpoints/location.go | 17 +++++++++++++++++ tequilapi/endpoints/location_test.go | 17 +++++++++++++++++ tequilapi/endpoints/proposals.go | 17 +++++++++++++++++ tequilapi/endpoints/proposals_test.go | 17 +++++++++++++++++ tequilapi/endpoints/stop.go | 17 +++++++++++++++++ tequilapi/endpoints/stop_test.go | 17 +++++++++++++++++ tequilapi/http_api_server.go | 17 +++++++++++++++++ tequilapi/http_api_server_test.go | 17 +++++++++++++++++ tequilapi/http_middlewares.go | 17 +++++++++++++++++ tequilapi/http_middlewares_test.go | 17 +++++++++++++++++ tequilapi/http_routes.go | 17 +++++++++++++++++ tequilapi/http_routes_test.go | 17 +++++++++++++++++ tequilapi/utils/utils.go | 17 +++++++++++++++++ tequilapi/utils/utils_test.go | 17 +++++++++++++++++ tequilapi/validation/validation.go | 17 +++++++++++++++++ tequilapi/validation/validation_test.go | 17 +++++++++++++++++ utils/cancelable.go | 17 +++++++++++++++++ utils/cancelable_test.go | 17 +++++++++++++++++ utils/once.go | 17 +++++++++++++++++ utils/once_test.go | 17 +++++++++++++++++ utils/settable_clock.go | 17 +++++++++++++++++ version/version.go | 17 +++++++++++++++++ 253 files changed, 4301 insertions(+) diff --git a/client/connection/interface.go b/client/connection/interface.go index c5d349578..7ca58d0d0 100644 --- a/client/connection/interface.go +++ b/client/connection/interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package connection import ( diff --git a/client/connection/manager.go b/client/connection/manager.go index 6f15324b0..1b20a13e5 100644 --- a/client/connection/manager.go +++ b/client/connection/manager.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package connection import ( diff --git a/client/connection/manager_test.go b/client/connection/manager_test.go index 7cd5e4ef4..b03fc96ad 100644 --- a/client/connection/manager_test.go +++ b/client/connection/manager_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package connection import ( diff --git a/client/connection/openvpn.go b/client/connection/openvpn.go index 98617bcf7..cc946a812 100644 --- a/client/connection/openvpn.go +++ b/client/connection/openvpn.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package connection import ( diff --git a/client/connection/status.go b/client/connection/status.go index e99f6498a..887621cfa 100644 --- a/client/connection/status.go +++ b/client/connection/status.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package connection import "github.com/mysterium/node/session" diff --git a/client/promise/dto/promise_body.go b/client/promise/dto/promise_body.go index 589c09ba0..2ca61dce2 100644 --- a/client/promise/dto/promise_body.go +++ b/client/promise/dto/promise_body.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/client/promise/dto/signature.go b/client/promise/dto/signature.go index 549e17dd4..f370955fb 100644 --- a/client/promise/dto/signature.go +++ b/client/promise/dto/signature.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto // Signature represents some data signed with a key diff --git a/client/promise/dto/signed_promise.go b/client/promise/dto/signed_promise.go index 3eb1c4756..268def4c4 100644 --- a/client/promise/dto/signed_promise.go +++ b/client/promise/dto/signed_promise.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto // SignedPromise represents payment promise signed by issuer diff --git a/client/promise/promise_test.go b/client/promise/promise_test.go index fcd0a6e0f..54ef80dae 100644 --- a/client/promise/promise_test.go +++ b/client/promise/promise_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package promise import ( diff --git a/cmd/commands/cli/command_cli.go b/cmd/commands/cli/command_cli.go index 68dfc4844..f7277c31f 100644 --- a/cmd/commands/cli/command_cli.go +++ b/cmd/commands/cli/command_cli.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package cli import ( diff --git a/cmd/commands/cli/io.go b/cmd/commands/cli/io.go index fb0749e86..68eb6f225 100644 --- a/cmd/commands/cli/io.go +++ b/cmd/commands/cli/io.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package cli import ( diff --git a/cmd/commands/client/command_client.go b/cmd/commands/client/command_client.go index 6a74f5a23..f5d514867 100644 --- a/cmd/commands/client/command_client.go +++ b/cmd/commands/client/command_client.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package client import ( diff --git a/cmd/commands/client/options.go b/cmd/commands/client/options.go index 75b3e10fd..2eec8b3c9 100644 --- a/cmd/commands/client/options.go +++ b/cmd/commands/client/options.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package client import ( diff --git a/cmd/commands/server/command_server.go b/cmd/commands/server/command_server.go index 478f9d51e..d3ac81ae7 100644 --- a/cmd/commands/server/command_server.go +++ b/cmd/commands/server/command_server.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/cmd/commands/server/command_server_test.go b/cmd/commands/server/command_server_test.go index c3eb728be..3e5914bd3 100644 --- a/cmd/commands/server/command_server_test.go +++ b/cmd/commands/server/command_server_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/cmd/commands/server/factory.go b/cmd/commands/server/factory.go index fcdbe97ca..8c8008ae6 100644 --- a/cmd/commands/server/factory.go +++ b/cmd/commands/server/factory.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/cmd/commands/server/identity/handler.go b/cmd/commands/server/identity/handler.go index 49e3c51a1..37636ece3 100644 --- a/cmd/commands/server/identity/handler.go +++ b/cmd/commands/server/identity/handler.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/cmd/commands/server/identity/handler_fake.go b/cmd/commands/server/identity/handler_fake.go index abf6dfb8c..2562dcc40 100644 --- a/cmd/commands/server/identity/handler_fake.go +++ b/cmd/commands/server/identity/handler_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/cmd/commands/server/identity/handler_test.go b/cmd/commands/server/identity/handler_test.go index 45f4f5ca3..617e236ca 100644 --- a/cmd/commands/server/identity/handler_test.go +++ b/cmd/commands/server/identity/handler_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/cmd/commands/server/identity/interface.go b/cmd/commands/server/identity/interface.go index 37beb21a1..2fc929211 100644 --- a/cmd/commands/server/identity/interface.go +++ b/cmd/commands/server/identity/interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import "github.com/mysterium/node/identity" diff --git a/cmd/commands/server/identity/loading.go b/cmd/commands/server/identity/loading.go index 5b811d935..c94aac945 100644 --- a/cmd/commands/server/identity/loading.go +++ b/cmd/commands/server/identity/loading.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import "github.com/mysterium/node/identity" diff --git a/cmd/commands/server/identity/loading_test.go b/cmd/commands/server/identity/loading_test.go index 29db41ab6..1f1b69ec6 100644 --- a/cmd/commands/server/identity/loading_test.go +++ b/cmd/commands/server/identity/loading_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/cmd/commands/server/options.go b/cmd/commands/server/options.go index f5bfc219b..249889b80 100644 --- a/cmd/commands/server/options.go +++ b/cmd/commands/server/options.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/cmd/config.go b/cmd/config.go index eb0f4d7fe..9e20341c6 100644 --- a/cmd/config.go +++ b/cmd/config.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package cmd // MysteriumAPIURL stores MYSTERIUM_API_URL env variable that is complied in diff --git a/cmd/directory.go b/cmd/directory.go index f6f140c33..160b6c97c 100644 --- a/cmd/directory.go +++ b/cmd/directory.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package cmd import ( diff --git a/cmd/interrupts.go b/cmd/interrupts.go index 7af40de04..c2457095f 100644 --- a/cmd/interrupts.go +++ b/cmd/interrupts.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package cmd import ( diff --git a/cmd/mysterium_client/mysterium_client.go b/cmd/mysterium_client/mysterium_client.go index 16b10e7c4..1413589dc 100644 --- a/cmd/mysterium_client/mysterium_client.go +++ b/cmd/mysterium_client/mysterium_client.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package main import ( diff --git a/cmd/mysterium_server/mysterium_server.go b/cmd/mysterium_server/mysterium_server.go index 4fe2461b8..6914c19f7 100644 --- a/cmd/mysterium_server/mysterium_server.go +++ b/cmd/mysterium_server/mysterium_server.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package main import ( diff --git a/cmd/stopper.go b/cmd/stopper.go index 9bc5a1c3b..3559f79de 100644 --- a/cmd/stopper.go +++ b/cmd/stopper.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package cmd import ( diff --git a/cmd/stopper_test.go b/cmd/stopper_test.go index 3b97004a1..f3d5ac897 100644 --- a/cmd/stopper_test.go +++ b/cmd/stopper_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package cmd import ( diff --git a/communication/codec.go b/communication/codec.go index 0c3ac6d69..fd0360258 100644 --- a/communication/codec.go +++ b/communication/codec.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package communication // Codec interface defines how communication payload messages are diff --git a/communication/codec_bytes.go b/communication/codec_bytes.go index 1104fe9d5..71397af90 100644 --- a/communication/codec_bytes.go +++ b/communication/codec_bytes.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package communication import ( diff --git a/communication/codec_bytes_test.go b/communication/codec_bytes_test.go index a8f8c6841..24f3f0e0c 100644 --- a/communication/codec_bytes_test.go +++ b/communication/codec_bytes_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package communication import ( diff --git a/communication/codec_fake.go b/communication/codec_fake.go index 377609824..393292e57 100644 --- a/communication/codec_fake.go +++ b/communication/codec_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package communication // NewCodecFake returns codec which: diff --git a/communication/codec_json.go b/communication/codec_json.go index f232f1dcb..afdb6d585 100644 --- a/communication/codec_json.go +++ b/communication/codec_json.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package communication import ( diff --git a/communication/codec_json_test.go b/communication/codec_json_test.go index 37ef45bb7..6f4253b21 100644 --- a/communication/codec_json_test.go +++ b/communication/codec_json_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package communication import ( diff --git a/communication/interface.go b/communication/interface.go index 09cc1be86..04f0fe64d 100644 --- a/communication/interface.go +++ b/communication/interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package communication import ( diff --git a/communication/message.go b/communication/message.go index a35a2074a..fe9e0ec50 100644 --- a/communication/message.go +++ b/communication/message.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package communication // MessageEndpoint is special type that describes unique message endpoint diff --git a/communication/nats/connection_fake.go b/communication/nats/connection_fake.go index 9ebdcddbe..a7f342252 100644 --- a/communication/nats/connection_fake.go +++ b/communication/nats/connection_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/nats/connection_interface.go b/communication/nats/connection_interface.go index 089f2118a..531e19929 100644 --- a/communication/nats/connection_interface.go +++ b/communication/nats/connection_interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/nats/dialog/codec_secured.go b/communication/nats/dialog/codec_secured.go index cbbc9346e..7bae5d732 100644 --- a/communication/nats/dialog/codec_secured.go +++ b/communication/nats/dialog/codec_secured.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/codec_secured_test.go b/communication/nats/dialog/codec_secured_test.go index 364c253f1..b94533da4 100644 --- a/communication/nats/dialog/codec_secured_test.go +++ b/communication/nats/dialog/codec_secured_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/create_consumer.go b/communication/nats/dialog/create_consumer.go index f0db9baa0..2d4aadb10 100644 --- a/communication/nats/dialog/create_consumer.go +++ b/communication/nats/dialog/create_consumer.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/create_producer.go b/communication/nats/dialog/create_producer.go index 29be87c46..28c76bfa6 100644 --- a/communication/nats/dialog/create_producer.go +++ b/communication/nats/dialog/create_producer.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/dialog.go b/communication/nats/dialog/dialog.go index 89a3f0961..7628e091c 100644 --- a/communication/nats/dialog/dialog.go +++ b/communication/nats/dialog/dialog.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/dialog_establisher.go b/communication/nats/dialog/dialog_establisher.go index fbb1ce972..229ca21c1 100644 --- a/communication/nats/dialog/dialog_establisher.go +++ b/communication/nats/dialog/dialog_establisher.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/dialog_establisher_test.go b/communication/nats/dialog/dialog_establisher_test.go index 37b144647..be47e123b 100644 --- a/communication/nats/dialog/dialog_establisher_test.go +++ b/communication/nats/dialog/dialog_establisher_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/dialog_waiter.go b/communication/nats/dialog/dialog_waiter.go index 9ffcfe887..b3d0deeec 100644 --- a/communication/nats/dialog/dialog_waiter.go +++ b/communication/nats/dialog/dialog_waiter.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/dialog_waiter_test.go b/communication/nats/dialog/dialog_waiter_test.go index 4b13b7e08..680527c7a 100644 --- a/communication/nats/dialog/dialog_waiter_test.go +++ b/communication/nats/dialog/dialog_waiter_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/dto.go b/communication/nats/dialog/dto.go index 2451aaffd..988456016 100644 --- a/communication/nats/dialog/dto.go +++ b/communication/nats/dialog/dto.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/dto_request_test.go b/communication/nats/dialog/dto_request_test.go index 5568d837a..cddd134d2 100644 --- a/communication/nats/dialog/dto_request_test.go +++ b/communication/nats/dialog/dto_request_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/dialog/dto_response_test.go b/communication/nats/dialog/dto_response_test.go index 9cc7fe536..b9ba25695 100644 --- a/communication/nats/dialog/dto_response_test.go +++ b/communication/nats/dialog/dto_response_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dialog import ( diff --git a/communication/nats/discovery/address.go b/communication/nats/discovery/address.go index 5157fa5fd..9a7ffbb06 100644 --- a/communication/nats/discovery/address.go +++ b/communication/nats/discovery/address.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery import ( diff --git a/communication/nats/discovery/address_test.go b/communication/nats/discovery/address_test.go index 20e17b174..5416373d7 100644 --- a/communication/nats/discovery/address_test.go +++ b/communication/nats/discovery/address_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery import ( diff --git a/communication/nats/discovery/bootstrap.go b/communication/nats/discovery/bootstrap.go index 1f55195e0..2d68d4948 100644 --- a/communication/nats/discovery/bootstrap.go +++ b/communication/nats/discovery/bootstrap.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery import ( diff --git a/communication/nats/discovery/bootstrap_test.go b/communication/nats/discovery/bootstrap_test.go index 146e32d3d..d550f1938 100644 --- a/communication/nats/discovery/bootstrap_test.go +++ b/communication/nats/discovery/bootstrap_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery import ( diff --git a/communication/nats/discovery/config.go b/communication/nats/discovery/config.go index a04767408..e64c1c644 100644 --- a/communication/nats/discovery/config.go +++ b/communication/nats/discovery/config.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery import "time" diff --git a/communication/nats/discovery/contact.go b/communication/nats/discovery/contact.go index bcd1493b5..8cdfd4af0 100644 --- a/communication/nats/discovery/contact.go +++ b/communication/nats/discovery/contact.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery // TypeContactNATSV1 defines V1 format for NATS contact diff --git a/communication/nats/discovery/contact_test.go b/communication/nats/discovery/contact_test.go index fec696972..7546c14b0 100644 --- a/communication/nats/discovery/contact_test.go +++ b/communication/nats/discovery/contact_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery import ( diff --git a/communication/nats/message_bytes_test.go b/communication/nats/message_bytes_test.go index 42f8c3fa0..4188742ad 100644 --- a/communication/nats/message_bytes_test.go +++ b/communication/nats/message_bytes_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/nats/message_custom_test.go b/communication/nats/message_custom_test.go index 0d1ab63ef..f4808e72c 100644 --- a/communication/nats/message_custom_test.go +++ b/communication/nats/message_custom_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/nats/receiver.go b/communication/nats/receiver.go index 283c0c3cb..c1b6ae6b5 100644 --- a/communication/nats/receiver.go +++ b/communication/nats/receiver.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/nats/receiver_test.go b/communication/nats/receiver_test.go index 0d69f2b1c..20d47d0e5 100644 --- a/communication/nats/receiver_test.go +++ b/communication/nats/receiver_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/nats/request_bytes_test.go b/communication/nats/request_bytes_test.go index aa80f0245..aedbdbe11 100644 --- a/communication/nats/request_bytes_test.go +++ b/communication/nats/request_bytes_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/nats/request_custom_test.go b/communication/nats/request_custom_test.go index 538d7593a..d1e0379e4 100644 --- a/communication/nats/request_custom_test.go +++ b/communication/nats/request_custom_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/nats/sender.go b/communication/nats/sender.go index 490fdc647..d45e88f2f 100644 --- a/communication/nats/sender.go +++ b/communication/nats/sender.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/nats/sender_test.go b/communication/nats/sender_test.go index 96fd42df2..cfa9d335b 100644 --- a/communication/nats/sender_test.go +++ b/communication/nats/sender_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nats import ( diff --git a/communication/request.go b/communication/request.go index 0d580a194..e7d09ba36 100644 --- a/communication/request.go +++ b/communication/request.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package communication // RequestEndpoint is special type that describes unique message endpoint diff --git a/datasize/bitsize.go b/datasize/bitsize.go index 5c65e6f1a..1dc84a29b 100644 --- a/datasize/bitsize.go +++ b/datasize/bitsize.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package datasize import ( diff --git a/datasize/bitsize_test.go b/datasize/bitsize_test.go index 2e470a100..9b14aef6b 100644 --- a/datasize/bitsize_test.go +++ b/datasize/bitsize_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package datasize import ( diff --git a/e2e/connection_test.go b/e2e/connection_test.go index fc5a95643..26417f13a 100644 --- a/e2e/connection_test.go +++ b/e2e/connection_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package e2e import ( diff --git a/identity/cache.go b/identity/cache.go index d0c4a37c0..1f16205a0 100644 --- a/identity/cache.go +++ b/identity/cache.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/cache_fake.go b/identity/cache_fake.go index fb21d5bad..596e98beb 100644 --- a/identity/cache_fake.go +++ b/identity/cache_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity type identityCacheFake struct { diff --git a/identity/cache_interface.go b/identity/cache_interface.go index ab39652d0..8ce4d2049 100644 --- a/identity/cache_interface.go +++ b/identity/cache_interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity // IdentityCacheInterface allows caching single identity diff --git a/identity/cache_test.go b/identity/cache_test.go index a8dad768c..18b6a6afe 100644 --- a/identity/cache_test.go +++ b/identity/cache_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/extractor.go b/identity/extractor.go index aac360c77..f80217732 100644 --- a/identity/extractor.go +++ b/identity/extractor.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/extractor_test.go b/identity/extractor_test.go index 663f3632c..dc595bb5b 100644 --- a/identity/extractor_test.go +++ b/identity/extractor_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/identity.go b/identity/identity.go index 320165edc..e3246d99d 100644 --- a/identity/identity.go +++ b/identity/identity.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import "strings" diff --git a/identity/integration_test.go b/identity/integration_test.go index 58f672d80..69097b578 100644 --- a/identity/integration_test.go +++ b/identity/integration_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/keystore_fake.go b/identity/keystore_fake.go index 95a5730a0..d8c60b318 100644 --- a/identity/keystore_fake.go +++ b/identity/keystore_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/keystore_interface.go b/identity/keystore_interface.go index 78199a344..9f84b9e67 100644 --- a/identity/keystore_interface.go +++ b/identity/keystore_interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import "github.com/ethereum/go-ethereum/accounts" diff --git a/identity/manager.go b/identity/manager.go index d8fdfd247..4dec3b19f 100644 --- a/identity/manager.go +++ b/identity/manager.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + // Maps Ethereum account to dto.Identity. // Currently creates a new eth account with passphrase on CreateNewIdentity(). diff --git a/identity/manager_fake.go b/identity/manager_fake.go index a71a760ec..8dcc697a7 100644 --- a/identity/manager_fake.go +++ b/identity/manager_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import "errors" diff --git a/identity/manager_interface.go b/identity/manager_interface.go index 06be03037..cd73d4026 100644 --- a/identity/manager_interface.go +++ b/identity/manager_interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity type IdentityManagerInterface interface { diff --git a/identity/manager_test.go b/identity/manager_test.go index 2739ea172..bca56c4be 100644 --- a/identity/manager_test.go +++ b/identity/manager_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/signature.go b/identity/signature.go index 1e3544ae4..e54f91b93 100644 --- a/identity/signature.go +++ b/identity/signature.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/signer.go b/identity/signer.go index 66a7e3c0a..8a9b92260 100644 --- a/identity/signer.go +++ b/identity/signer.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/signer_fake.go b/identity/signer_fake.go index 3b82c0158..11ba010b4 100644 --- a/identity/signer_fake.go +++ b/identity/signer_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity type SignerFake struct { diff --git a/identity/signer_test.go b/identity/signer_test.go index 851b733ba..0e006167e 100644 --- a/identity/signer_test.go +++ b/identity/signer_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/identity/verifier.go b/identity/verifier.go index 5c9db72b5..f763655f6 100644 --- a/identity/verifier.go +++ b/identity/verifier.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity // Verifier checks message's sanity diff --git a/identity/verifier_fake.go b/identity/verifier_fake.go index aea354507..96a0a13ed 100644 --- a/identity/verifier_fake.go +++ b/identity/verifier_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity type VerifierFake struct{} diff --git a/identity/verifier_test.go b/identity/verifier_test.go index 0765c85d7..a087b0a04 100644 --- a/identity/verifier_test.go +++ b/identity/verifier_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package identity import ( diff --git a/ip/dto.go b/ip/dto.go index a40fad603..3e6b8b695 100644 --- a/ip/dto.go +++ b/ip/dto.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package ip type IPResponse struct { diff --git a/ip/fake_resolver.go b/ip/fake_resolver.go index 1dde9e93f..71e8ba78b 100644 --- a/ip/fake_resolver.go +++ b/ip/fake_resolver.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package ip func NewFakeResolver(ip string) Resolver { diff --git a/ip/resolver.go b/ip/resolver.go index 47fd5e3f6..ec85f4353 100644 --- a/ip/resolver.go +++ b/ip/resolver.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package ip type Resolver interface { diff --git a/ip/rest_resolver.go b/ip/rest_resolver.go index 553036df0..8ae074b39 100644 --- a/ip/rest_resolver.go +++ b/ip/rest_resolver.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package ip import ( diff --git a/location/cache.go b/location/cache.go index 3b8176527..8021a31f2 100644 --- a/location/cache.go +++ b/location/cache.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package location type cache struct { diff --git a/location/cache_test.go b/location/cache_test.go index 4aa2102e3..cb3e867ee 100644 --- a/location/cache_test.go +++ b/location/cache_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package location import ( diff --git a/location/detector.go b/location/detector.go index bcc584519..8d8c5b922 100644 --- a/location/detector.go +++ b/location/detector.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package location import ( diff --git a/location/detector_test.go b/location/detector_test.go index 126e44435..e01206f26 100644 --- a/location/detector_test.go +++ b/location/detector_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package location import ( diff --git a/location/interface.go b/location/interface.go index a27e6bdaa..e150f2e16 100644 --- a/location/interface.go +++ b/location/interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package location // Resolver allows resolving location by ip diff --git a/location/location.go b/location/location.go index f54b14451..66fd78c7d 100644 --- a/location/location.go +++ b/location/location.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package location type Location struct { diff --git a/location/resolver.go b/location/resolver.go index 1c6f7c42b..5e7cb0408 100644 --- a/location/resolver.go +++ b/location/resolver.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package location import ( diff --git a/location/resolver_fake.go b/location/resolver_fake.go index 62b9252c5..36ead855a 100644 --- a/location/resolver_fake.go +++ b/location/resolver_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package location type resolverFake struct { diff --git a/location/resolver_test.go b/location/resolver_test.go index 34204f754..07e2c9f20 100644 --- a/location/resolver_test.go +++ b/location/resolver_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package location import ( diff --git a/logconfig/config.go b/logconfig/config.go index 38adf0872..d2d4158b2 100644 --- a/logconfig/config.go +++ b/logconfig/config.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package logconfig import "github.com/cihub/seelog" diff --git a/money/currency.go b/money/currency.go index 325b7df3e..dd343f959 100644 --- a/money/currency.go +++ b/money/currency.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package money type Currency string diff --git a/money/money.go b/money/money.go index d81d3b066..a648cbbd9 100644 --- a/money/money.go +++ b/money/money.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package money type Money struct { diff --git a/money/money_test.go b/money/money_test.go index 0a937ed29..3fad1350b 100644 --- a/money/money_test.go +++ b/money/money_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package money import ( diff --git a/nat/factory_darwin.go b/nat/factory_darwin.go index 505983c60..3b96503f1 100644 --- a/nat/factory_darwin.go +++ b/nat/factory_darwin.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nat func NewService() NATService { diff --git a/nat/factory_linux.go b/nat/factory_linux.go index 8a031f034..5e539ff9e 100644 --- a/nat/factory_linux.go +++ b/nat/factory_linux.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nat func NewService() NATService { diff --git a/nat/factory_windows.go b/nat/factory_windows.go index 505983c60..3b96503f1 100644 --- a/nat/factory_windows.go +++ b/nat/factory_windows.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nat func NewService() NATService { diff --git a/nat/interface.go b/nat/interface.go index 5af0287a6..5d93c7525 100644 --- a/nat/interface.go +++ b/nat/interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nat type NATService interface { diff --git a/nat/service_fake.go b/nat/service_fake.go index 19a7dc739..d48fb1023 100644 --- a/nat/service_fake.go +++ b/nat/service_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nat func NewServiceFake() *serviceFake { diff --git a/nat/service_iptables.go b/nat/service_iptables.go index 28f7a6ed7..998e52ca3 100644 --- a/nat/service_iptables.go +++ b/nat/service_iptables.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package nat import ( diff --git a/openvpn/bootstrap.go b/openvpn/bootstrap.go index 8a9d1883e..4cc573409 100644 --- a/openvpn/bootstrap.go +++ b/openvpn/bootstrap.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/check.go b/openvpn/check.go index 0739bc721..7daae5940 100644 --- a/openvpn/check.go +++ b/openvpn/check.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/check_test.go b/openvpn/check_test.go index 5902007e0..daa6cb948 100644 --- a/openvpn/check_test.go +++ b/openvpn/check_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/client.go b/openvpn/client.go index 168a99e43..33b025648 100644 --- a/openvpn/client.go +++ b/openvpn/client.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import "sync" diff --git a/openvpn/client_config.go b/openvpn/client_config.go index 5382ebd0d..12442ce5b 100644 --- a/openvpn/client_config.go +++ b/openvpn/client_config.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn type ClientConfig struct { diff --git a/openvpn/config.go b/openvpn/config.go index c04450131..b59a3a094 100644 --- a/openvpn/config.go +++ b/openvpn/config.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/config_validator.go b/openvpn/config_validator.go index 05b24a0e5..aa74e9253 100644 --- a/openvpn/config_validator.go +++ b/openvpn/config_validator.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/config_validator_test.go b/openvpn/config_validator_test.go index 876c025b4..5fc85b389 100644 --- a/openvpn/config_validator_test.go +++ b/openvpn/config_validator_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/discovery/dto/bandwidth.go b/openvpn/discovery/dto/bandwidth.go index 903af69ae..6556d1346 100644 --- a/openvpn/discovery/dto/bandwidth.go +++ b/openvpn/discovery/dto/bandwidth.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/openvpn/discovery/dto/bandwidth_test.go b/openvpn/discovery/dto/bandwidth_test.go index e5665ab40..f016b7fe3 100644 --- a/openvpn/discovery/dto/bandwidth_test.go +++ b/openvpn/discovery/dto/bandwidth_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/openvpn/discovery/dto/payment_method_per_bytes.go b/openvpn/discovery/dto/payment_method_per_bytes.go index 63acd9603..56a759730 100644 --- a/openvpn/discovery/dto/payment_method_per_bytes.go +++ b/openvpn/discovery/dto/payment_method_per_bytes.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/openvpn/discovery/dto/payment_method_per_bytes_test.go b/openvpn/discovery/dto/payment_method_per_bytes_test.go index ddb6b97d8..81778111c 100644 --- a/openvpn/discovery/dto/payment_method_per_bytes_test.go +++ b/openvpn/discovery/dto/payment_method_per_bytes_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/openvpn/discovery/dto/payment_method_per_time.go b/openvpn/discovery/dto/payment_method_per_time.go index fa7e2e7d2..cc1b88fd3 100644 --- a/openvpn/discovery/dto/payment_method_per_time.go +++ b/openvpn/discovery/dto/payment_method_per_time.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/openvpn/discovery/dto/payment_method_per_time_test.go b/openvpn/discovery/dto/payment_method_per_time_test.go index 3f0400939..3a22a95cb 100644 --- a/openvpn/discovery/dto/payment_method_per_time_test.go +++ b/openvpn/discovery/dto/payment_method_per_time_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/openvpn/discovery/dto/service_definition.go b/openvpn/discovery/dto/service_definition.go index 00ea30432..30dd506ed 100644 --- a/openvpn/discovery/dto/service_definition.go +++ b/openvpn/discovery/dto/service_definition.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/openvpn/discovery/dto/service_definition_test.go b/openvpn/discovery/dto/service_definition_test.go index 8f7b081b5..ae857e8fa 100644 --- a/openvpn/discovery/dto/service_definition_test.go +++ b/openvpn/discovery/dto/service_definition_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/openvpn/discovery/factory.go b/openvpn/discovery/factory.go index e4e0bfa2e..5f519da80 100644 --- a/openvpn/discovery/factory.go +++ b/openvpn/discovery/factory.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery import ( diff --git a/openvpn/discovery/factory_test.go b/openvpn/discovery/factory_test.go index 8017cc281..71e27c25a 100644 --- a/openvpn/discovery/factory_test.go +++ b/openvpn/discovery/factory_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery import ( diff --git a/openvpn/discovery/service_poposal_test.go b/openvpn/discovery/service_poposal_test.go index a5d7b2f30..4dda93475 100644 --- a/openvpn/discovery/service_poposal_test.go +++ b/openvpn/discovery/service_poposal_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package discovery import ( diff --git a/openvpn/factory.go b/openvpn/factory.go index 8f20ec941..664f52b75 100644 --- a/openvpn/factory.go +++ b/openvpn/factory.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/management/connection.go b/openvpn/management/connection.go index dc90a9932..fb5502aa8 100644 --- a/openvpn/management/connection.go +++ b/openvpn/management/connection.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package management import ( diff --git a/openvpn/management/connection_mock.go b/openvpn/management/connection_mock.go index db7367578..c471ea1d8 100644 --- a/openvpn/management/connection_mock.go +++ b/openvpn/management/connection_mock.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package management import ( diff --git a/openvpn/management/connection_test.go b/openvpn/management/connection_test.go index 009b5aadb..07bc2a4ee 100644 --- a/openvpn/management/connection_test.go +++ b/openvpn/management/connection_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package management import ( diff --git a/openvpn/management/listener.go b/openvpn/management/listener.go index 99163469c..3a96d3bc3 100644 --- a/openvpn/management/listener.go +++ b/openvpn/management/listener.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package management import ( diff --git a/openvpn/management/management.go b/openvpn/management/management.go index 36f2c0355..c7776c7b4 100644 --- a/openvpn/management/management.go +++ b/openvpn/management/management.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package management // Management packages contains all functionality related to openvpn management interface diff --git a/openvpn/middlewares/client/auth/middleware.go b/openvpn/middlewares/client/auth/middleware.go index c690a8f14..086913d72 100644 --- a/openvpn/middlewares/client/auth/middleware.go +++ b/openvpn/middlewares/client/auth/middleware.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package auth import ( diff --git a/openvpn/middlewares/client/auth/middleware_test.go b/openvpn/middlewares/client/auth/middleware_test.go index d888c0b8a..d1340fd7c 100644 --- a/openvpn/middlewares/client/auth/middleware_test.go +++ b/openvpn/middlewares/client/auth/middleware_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package auth import ( diff --git a/openvpn/middlewares/client/bytescount/composite_stats_handler.go b/openvpn/middlewares/client/bytescount/composite_stats_handler.go index f52038938..0e3b5a436 100644 --- a/openvpn/middlewares/client/bytescount/composite_stats_handler.go +++ b/openvpn/middlewares/client/bytescount/composite_stats_handler.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount // NewCompositeStatsHandler composes multiple stats handlers into single one, which executes all handlers sequentially diff --git a/openvpn/middlewares/client/bytescount/composite_stats_handler_test.go b/openvpn/middlewares/client/bytescount/composite_stats_handler_test.go index 8074d9126..1aa49fa71 100644 --- a/openvpn/middlewares/client/bytescount/composite_stats_handler_test.go +++ b/openvpn/middlewares/client/bytescount/composite_stats_handler_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount import ( diff --git a/openvpn/middlewares/client/bytescount/dto.go b/openvpn/middlewares/client/bytescount/dto.go index 902e807f1..8406a3e7b 100644 --- a/openvpn/middlewares/client/bytescount/dto.go +++ b/openvpn/middlewares/client/bytescount/dto.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount // SessionStats represents statistics, generated by bytescount middleware diff --git a/openvpn/middlewares/client/bytescount/fake_stats_handler.go b/openvpn/middlewares/client/bytescount/fake_stats_handler.go index c7eeb9b17..a8e393a2b 100644 --- a/openvpn/middlewares/client/bytescount/fake_stats_handler.go +++ b/openvpn/middlewares/client/bytescount/fake_stats_handler.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount type fakeStatsRecorder struct { diff --git a/openvpn/middlewares/client/bytescount/middleware.go b/openvpn/middlewares/client/bytescount/middleware.go index 68a7e2c89..f927a8372 100644 --- a/openvpn/middlewares/client/bytescount/middleware.go +++ b/openvpn/middlewares/client/bytescount/middleware.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount import ( diff --git a/openvpn/middlewares/client/bytescount/middleware_test.go b/openvpn/middlewares/client/bytescount/middleware_test.go index a8dc85a17..7151435fd 100644 --- a/openvpn/middlewares/client/bytescount/middleware_test.go +++ b/openvpn/middlewares/client/bytescount/middleware_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount import ( diff --git a/openvpn/middlewares/client/bytescount/selective_stats_handler.go b/openvpn/middlewares/client/bytescount/selective_stats_handler.go index b714f1705..117157c74 100644 --- a/openvpn/middlewares/client/bytescount/selective_stats_handler.go +++ b/openvpn/middlewares/client/bytescount/selective_stats_handler.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount import ( diff --git a/openvpn/middlewares/client/bytescount/selective_stats_handler_test.go b/openvpn/middlewares/client/bytescount/selective_stats_handler_test.go index 0bd8d2dd9..97aa87df8 100644 --- a/openvpn/middlewares/client/bytescount/selective_stats_handler_test.go +++ b/openvpn/middlewares/client/bytescount/selective_stats_handler_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount import ( diff --git a/openvpn/middlewares/client/bytescount/stats_keeper.go b/openvpn/middlewares/client/bytescount/stats_keeper.go index 51eea974d..72e05975f 100644 --- a/openvpn/middlewares/client/bytescount/stats_keeper.go +++ b/openvpn/middlewares/client/bytescount/stats_keeper.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount import ( diff --git a/openvpn/middlewares/client/bytescount/stats_keeper_test.go b/openvpn/middlewares/client/bytescount/stats_keeper_test.go index 995299704..2f5005a4a 100644 --- a/openvpn/middlewares/client/bytescount/stats_keeper_test.go +++ b/openvpn/middlewares/client/bytescount/stats_keeper_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount import ( diff --git a/openvpn/middlewares/client/bytescount/stats_saver.go b/openvpn/middlewares/client/bytescount/stats_saver.go index 692fba2af..f2adb3ec5 100644 --- a/openvpn/middlewares/client/bytescount/stats_saver.go +++ b/openvpn/middlewares/client/bytescount/stats_saver.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount // NewSessionStatsSaver returns stats handler, which saves stats stats keeper diff --git a/openvpn/middlewares/client/bytescount/stats_saver_test.go b/openvpn/middlewares/client/bytescount/stats_saver_test.go index 967b80ff1..b4b8b0665 100644 --- a/openvpn/middlewares/client/bytescount/stats_saver_test.go +++ b/openvpn/middlewares/client/bytescount/stats_saver_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount import ( diff --git a/openvpn/middlewares/client/bytescount/stats_sender.go b/openvpn/middlewares/client/bytescount/stats_sender.go index e2932b5ba..a23d4b945 100644 --- a/openvpn/middlewares/client/bytescount/stats_sender.go +++ b/openvpn/middlewares/client/bytescount/stats_sender.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package bytescount import ( diff --git a/openvpn/middlewares/server/auth/middleware.go b/openvpn/middlewares/server/auth/middleware.go index 4e186d8cd..cd470a529 100644 --- a/openvpn/middlewares/server/auth/middleware.go +++ b/openvpn/middlewares/server/auth/middleware.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package auth import ( diff --git a/openvpn/middlewares/server/auth/middleware_test.go b/openvpn/middlewares/server/auth/middleware_test.go index f9b738883..de8232e8b 100644 --- a/openvpn/middlewares/server/auth/middleware_test.go +++ b/openvpn/middlewares/server/auth/middleware_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package auth import ( diff --git a/openvpn/middlewares/server/auth/parsing.go b/openvpn/middlewares/server/auth/parsing.go index aa3eb3952..8b5761899 100644 --- a/openvpn/middlewares/server/auth/parsing.go +++ b/openvpn/middlewares/server/auth/parsing.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package auth import ( diff --git a/openvpn/middlewares/server/auth/parsing_test.go b/openvpn/middlewares/server/auth/parsing_test.go index 3b9c16516..8b095dbcc 100644 --- a/openvpn/middlewares/server/auth/parsing_test.go +++ b/openvpn/middlewares/server/auth/parsing_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package auth import ( diff --git a/openvpn/middlewares/state/middleware.go b/openvpn/middlewares/state/middleware.go index 9f586f006..8f50f37af 100644 --- a/openvpn/middlewares/state/middleware.go +++ b/openvpn/middlewares/state/middleware.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package state import ( diff --git a/openvpn/middlewares/state/middleware_test.go b/openvpn/middlewares/state/middleware_test.go index 1649068c7..1a8ff18b1 100644 --- a/openvpn/middlewares/state/middleware_test.go +++ b/openvpn/middlewares/state/middleware_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package state import ( diff --git a/openvpn/option_file.go b/openvpn/option_file.go index b413fa900..08737a607 100644 --- a/openvpn/option_file.go +++ b/openvpn/option_file.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/option_file_test.go b/openvpn/option_file_test.go index 99f13d44f..5274797c5 100644 --- a/openvpn/option_file_test.go +++ b/openvpn/option_file_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/option_flag.go b/openvpn/option_flag.go index c8116849d..cbe4be5f4 100644 --- a/openvpn/option_flag.go +++ b/openvpn/option_flag.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn func OptionFlag(name string) optionFlag { diff --git a/openvpn/option_flag_test.go b/openvpn/option_flag_test.go index 0b03cc85a..6214242fe 100644 --- a/openvpn/option_flag_test.go +++ b/openvpn/option_flag_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/option_param.go b/openvpn/option_param.go index efd31ac9f..969510c09 100644 --- a/openvpn/option_param.go +++ b/openvpn/option_param.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn func OptionParam(name, value string) optionParam { diff --git a/openvpn/option_param_test.go b/openvpn/option_param_test.go index 991e434dc..f56d223ed 100644 --- a/openvpn/option_param_test.go +++ b/openvpn/option_param_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/process.go b/openvpn/process.go index 857ce20f6..19e681743 100644 --- a/openvpn/process.go +++ b/openvpn/process.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/process_test.go b/openvpn/process_test.go index 969ed5e0f..c44ebb889 100644 --- a/openvpn/process_test.go +++ b/openvpn/process_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/serializer_cli.go b/openvpn/serializer_cli.go index 3a55db7db..6e550a84d 100644 --- a/openvpn/serializer_cli.go +++ b/openvpn/serializer_cli.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/serializer_cli_test.go b/openvpn/serializer_cli_test.go index 93d420cbe..907290288 100644 --- a/openvpn/serializer_cli_test.go +++ b/openvpn/serializer_cli_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/serializer_file.go b/openvpn/serializer_file.go index 6357ba0b0..6aa5fa45d 100644 --- a/openvpn/serializer_file.go +++ b/openvpn/serializer_file.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/serializer_file_test.go b/openvpn/serializer_file_test.go index 6132d21c9..8a07f279a 100644 --- a/openvpn/serializer_file_test.go +++ b/openvpn/serializer_file_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/server.go b/openvpn/server.go index 28bce873b..09016313c 100644 --- a/openvpn/server.go +++ b/openvpn/server.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/openvpn/server_config.go b/openvpn/server_config.go index f78c4eb30..bb2db22ab 100644 --- a/openvpn/server_config.go +++ b/openvpn/server_config.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn type ServerConfig struct { diff --git a/openvpn/session/authentication.go b/openvpn/session/authentication.go index 4dc2d8025..a89b8f226 100644 --- a/openvpn/session/authentication.go +++ b/openvpn/session/authentication.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/openvpn/session/authentication_test.go b/openvpn/session/authentication_test.go index c2fef5722..c2a2790d4 100644 --- a/openvpn/session/authentication_test.go +++ b/openvpn/session/authentication_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/openvpn/state.go b/openvpn/state.go index 6676c6072..a4391f3fa 100644 --- a/openvpn/state.go +++ b/openvpn/state.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn type State string diff --git a/openvpn/tls/ca.go b/openvpn/tls/ca.go index 8b9b120e7..70c6a5fd6 100644 --- a/openvpn/tls/ca.go +++ b/openvpn/tls/ca.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tls import ( diff --git a/openvpn/tls/ca_test.go b/openvpn/tls/ca_test.go index 1ea123d4e..9b4525adc 100644 --- a/openvpn/tls/ca_test.go +++ b/openvpn/tls/ca_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tls import ( diff --git a/openvpn/tls/cert_config.go b/openvpn/tls/cert_config.go index 5414cf414..32a28b714 100644 --- a/openvpn/tls/cert_config.go +++ b/openvpn/tls/cert_config.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tls import ( diff --git a/openvpn/tls/ta.go b/openvpn/tls/ta.go index 2dae54c17..1b332f2eb 100644 --- a/openvpn/tls/ta.go +++ b/openvpn/tls/ta.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tls import ( diff --git a/openvpn/tls/ta_test.go b/openvpn/tls/ta_test.go index 1b5c0b527..6f3b15422 100644 --- a/openvpn/tls/ta_test.go +++ b/openvpn/tls/ta_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tls import ( diff --git a/openvpn/tls/tls.go b/openvpn/tls/tls.go index 3a2b391b1..c1666b602 100644 --- a/openvpn/tls/tls.go +++ b/openvpn/tls/tls.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tls import ( diff --git a/openvpn/tls/tls_test.go b/openvpn/tls/tls_test.go index 66fee6f0e..20e2860d9 100644 --- a/openvpn/tls/tls_test.go +++ b/openvpn/tls/tls_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tls import ( diff --git a/openvpn/utils.go b/openvpn/utils.go index 7ea3a69a7..507bef791 100644 --- a/openvpn/utils.go +++ b/openvpn/utils.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package openvpn import ( diff --git a/requests/request.go b/requests/request.go index 4d67e2459..329789abd 100644 --- a/requests/request.go +++ b/requests/request.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package requests import ( diff --git a/requests/request_test.go b/requests/request_test.go index 169d75413..c38f7c176 100644 --- a/requests/request_test.go +++ b/requests/request_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package requests import ( diff --git a/server/dto/create_identity.go b/server/dto/create_identity.go index 34d0d3878..3a7900490 100644 --- a/server/dto/create_identity.go +++ b/server/dto/create_identity.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto type CreateIdentityRequest struct { diff --git a/server/dto/node_register_request.go b/server/dto/node_register_request.go index 7d73959b2..2424e6e99 100644 --- a/server/dto/node_register_request.go +++ b/server/dto/node_register_request.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import dto_discovery "github.com/mysterium/node/service_discovery/dto" diff --git a/server/dto/node_stats_request.go b/server/dto/node_stats_request.go index aaaa9b63a..dcb7be576 100644 --- a/server/dto/node_stats_request.go +++ b/server/dto/node_stats_request.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto type NodeStatsRequest struct { diff --git a/server/dto/proposal_unregister_request.go b/server/dto/proposal_unregister_request.go index 14c05345a..38ddf0b74 100644 --- a/server/dto/proposal_unregister_request.go +++ b/server/dto/proposal_unregister_request.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto type ProposalUnregisterRequest struct { diff --git a/server/dto/proposals_request.go b/server/dto/proposals_request.go index fd539cb20..d6e76f59a 100644 --- a/server/dto/proposals_request.go +++ b/server/dto/proposals_request.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto type ProposalsRequest struct { diff --git a/server/dto/proposals_response.go b/server/dto/proposals_response.go index d14d98b57..56e8705cf 100644 --- a/server/dto/proposals_response.go +++ b/server/dto/proposals_response.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import "github.com/mysterium/node/service_discovery/dto" diff --git a/server/dto/session_stats.go b/server/dto/session_stats.go index 102abd7e2..6fefaae81 100644 --- a/server/dto/session_stats.go +++ b/server/dto/session_stats.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto // SessionStats mapped to json structure diff --git a/server/interface.go b/server/interface.go index 3ac3065ab..af0d11a04 100644 --- a/server/interface.go +++ b/server/interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/server/mysterium_api.go b/server/mysterium_api.go index 0c196fa89..98c6b63b5 100644 --- a/server/mysterium_api.go +++ b/server/mysterium_api.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/server/mysterium_api_fake.go b/server/mysterium_api_fake.go index 1bd012553..3625e4f1e 100644 --- a/server/mysterium_api_fake.go +++ b/server/mysterium_api_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/server/mysterium_api_test.go b/server/mysterium_api_test.go index c4d968487..cd596ea6b 100644 --- a/server/mysterium_api_test.go +++ b/server/mysterium_api_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/server/response.go b/server/response.go index 9ad40bf93..7ff0d2ed9 100644 --- a/server/response.go +++ b/server/response.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/server/response_test.go b/server/response_test.go index 4571c8103..c508dfc42 100644 --- a/server/response_test.go +++ b/server/response_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package server import ( diff --git a/service_discovery/dto/contact.go b/service_discovery/dto/contact.go index ae7ee1a08..cc13fe346 100644 --- a/service_discovery/dto/contact.go +++ b/service_discovery/dto/contact.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto type Contact struct { diff --git a/service_discovery/dto/location.go b/service_discovery/dto/location.go index 7b1cfe9ec..983d7e765 100644 --- a/service_discovery/dto/location.go +++ b/service_discovery/dto/location.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto type Location struct { diff --git a/service_discovery/dto/location_test.go b/service_discovery/dto/location_test.go index 3f06a8ba2..972fc04a0 100644 --- a/service_discovery/dto/location_test.go +++ b/service_discovery/dto/location_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/service_discovery/dto/payment_method.go b/service_discovery/dto/payment_method.go index 3d7f1f962..bfed7d20c 100644 --- a/service_discovery/dto/payment_method.go +++ b/service_discovery/dto/payment_method.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import "github.com/mysterium/node/money" diff --git a/service_discovery/dto/service_definition.go b/service_discovery/dto/service_definition.go index 779b78fa7..fb0cccb50 100644 --- a/service_discovery/dto/service_definition.go +++ b/service_discovery/dto/service_definition.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto type ServiceDefinition interface { diff --git a/service_discovery/dto/service_proposal.go b/service_discovery/dto/service_proposal.go index 86d08fa97..8b1734ea7 100644 --- a/service_discovery/dto/service_proposal.go +++ b/service_discovery/dto/service_proposal.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/service_discovery/dto/service_proposal_test.go b/service_discovery/dto/service_proposal_test.go index c6e740fc3..f92b5c677 100644 --- a/service_discovery/dto/service_proposal_test.go +++ b/service_discovery/dto/service_proposal_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package dto import ( diff --git a/session/create_consumer.go b/session/create_consumer.go index 9722eb17b..fac29ad9c 100644 --- a/session/create_consumer.go +++ b/session/create_consumer.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/session/create_consumer_test.go b/session/create_consumer_test.go index de39104a6..b3892307a 100644 --- a/session/create_consumer_test.go +++ b/session/create_consumer_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/session/create_producer.go b/session/create_producer.go index ca56c67f3..f0ef8d4dd 100644 --- a/session/create_producer.go +++ b/session/create_producer.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/session/dialog_handler.go b/session/dialog_handler.go index 7de6f57b6..f4f05ac74 100644 --- a/session/dialog_handler.go +++ b/session/dialog_handler.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/session/dto.go b/session/dto.go index 405875eb8..fa680cf51 100644 --- a/session/dto.go +++ b/session/dto.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/session/generator.go b/session/generator.go index 2fb859492..452c416c4 100644 --- a/session/generator.go +++ b/session/generator.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import "github.com/satori/go.uuid" diff --git a/session/generator_fake.go b/session/generator_fake.go index e92caf823..d6da7b044 100644 --- a/session/generator_fake.go +++ b/session/generator_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session type GeneratorFake struct { diff --git a/session/generator_test.go b/session/generator_test.go index 813bbfb99..b1448e323 100644 --- a/session/generator_test.go +++ b/session/generator_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/session/interface.go b/session/interface.go index c32c0ecac..a5f6bb94d 100644 --- a/session/interface.go +++ b/session/interface.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import "github.com/mysterium/node/identity" diff --git a/session/manager.go b/session/manager.go index 68c404fea..9f2162780 100644 --- a/session/manager.go +++ b/session/manager.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/session/manager_fake.go b/session/manager_fake.go index ce8a60431..e58df26e1 100644 --- a/session/manager_fake.go +++ b/session/manager_fake.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import "github.com/mysterium/node/identity" diff --git a/session/manager_test.go b/session/manager_test.go index e40f55e67..9a7920a6a 100644 --- a/session/manager_test.go +++ b/session/manager_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package session import ( diff --git a/tequilapi/api_test.go b/tequilapi/api_test.go index 2d435d611..d0941e7c7 100644 --- a/tequilapi/api_test.go +++ b/tequilapi/api_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tequilapi import ( diff --git a/tequilapi/api_test_utils.go b/tequilapi/api_test_utils.go index d0eb98839..737a81c96 100644 --- a/tequilapi/api_test_utils.go +++ b/tequilapi/api_test_utils.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tequilapi import ( diff --git a/tequilapi/client/client.go b/tequilapi/client/client.go index dc4705fef..e19aa269c 100644 --- a/tequilapi/client/client.go +++ b/tequilapi/client/client.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package client import ( diff --git a/tequilapi/client/dto.go b/tequilapi/client/dto.go index a008c8861..d388f53f2 100644 --- a/tequilapi/client/dto.go +++ b/tequilapi/client/dto.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package client import "fmt" diff --git a/tequilapi/client/http_client.go b/tequilapi/client/http_client.go index 9a1f44148..8d673434e 100644 --- a/tequilapi/client/http_client.go +++ b/tequilapi/client/http_client.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package client import ( diff --git a/tequilapi/endpoints/connection.go b/tequilapi/endpoints/connection.go index d60183963..c4cc32689 100644 --- a/tequilapi/endpoints/connection.go +++ b/tequilapi/endpoints/connection.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/connection_test.go b/tequilapi/endpoints/connection_test.go index 7887a7d67..2a5b4482e 100644 --- a/tequilapi/endpoints/connection_test.go +++ b/tequilapi/endpoints/connection_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/health_check.go b/tequilapi/endpoints/health_check.go index 3f4a3cce8..597e7690c 100644 --- a/tequilapi/endpoints/health_check.go +++ b/tequilapi/endpoints/health_check.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/health_check_test.go b/tequilapi/endpoints/health_check_test.go index 28e9e5fcb..150459dc2 100644 --- a/tequilapi/endpoints/health_check_test.go +++ b/tequilapi/endpoints/health_check_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/identities.go b/tequilapi/endpoints/identities.go index 422323b52..57af4efb3 100644 --- a/tequilapi/endpoints/identities.go +++ b/tequilapi/endpoints/identities.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/identities_test.go b/tequilapi/endpoints/identities_test.go index ea1a03a48..e5e5850f7 100644 --- a/tequilapi/endpoints/identities_test.go +++ b/tequilapi/endpoints/identities_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/location.go b/tequilapi/endpoints/location.go index 721d8c1fd..1d46141ab 100644 --- a/tequilapi/endpoints/location.go +++ b/tequilapi/endpoints/location.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/location_test.go b/tequilapi/endpoints/location_test.go index 0009b0285..ab67b7926 100644 --- a/tequilapi/endpoints/location_test.go +++ b/tequilapi/endpoints/location_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/proposals.go b/tequilapi/endpoints/proposals.go index e94e57d10..66114596b 100644 --- a/tequilapi/endpoints/proposals.go +++ b/tequilapi/endpoints/proposals.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/proposals_test.go b/tequilapi/endpoints/proposals_test.go index e0aa012d3..0b07d9d2d 100644 --- a/tequilapi/endpoints/proposals_test.go +++ b/tequilapi/endpoints/proposals_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/stop.go b/tequilapi/endpoints/stop.go index 9831c3ae5..acfeaa99a 100644 --- a/tequilapi/endpoints/stop.go +++ b/tequilapi/endpoints/stop.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/endpoints/stop_test.go b/tequilapi/endpoints/stop_test.go index 6a3a39220..b78d8866f 100644 --- a/tequilapi/endpoints/stop_test.go +++ b/tequilapi/endpoints/stop_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package endpoints import ( diff --git a/tequilapi/http_api_server.go b/tequilapi/http_api_server.go index 394228b7c..de655dcf8 100644 --- a/tequilapi/http_api_server.go +++ b/tequilapi/http_api_server.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tequilapi import ( diff --git a/tequilapi/http_api_server_test.go b/tequilapi/http_api_server_test.go index 1066acbba..fef6ed144 100644 --- a/tequilapi/http_api_server_test.go +++ b/tequilapi/http_api_server_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tequilapi import ( diff --git a/tequilapi/http_middlewares.go b/tequilapi/http_middlewares.go index cce2b8769..5ece74632 100644 --- a/tequilapi/http_middlewares.go +++ b/tequilapi/http_middlewares.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tequilapi import ( diff --git a/tequilapi/http_middlewares_test.go b/tequilapi/http_middlewares_test.go index 6715d5fff..f4df0852c 100644 --- a/tequilapi/http_middlewares_test.go +++ b/tequilapi/http_middlewares_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tequilapi import ( diff --git a/tequilapi/http_routes.go b/tequilapi/http_routes.go index fce5deb4b..b0de3c753 100644 --- a/tequilapi/http_routes.go +++ b/tequilapi/http_routes.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tequilapi import ( diff --git a/tequilapi/http_routes_test.go b/tequilapi/http_routes_test.go index 29f8ac734..337e9adff 100644 --- a/tequilapi/http_routes_test.go +++ b/tequilapi/http_routes_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package tequilapi import ( diff --git a/tequilapi/utils/utils.go b/tequilapi/utils/utils.go index 98db3f660..16b6f5be1 100644 --- a/tequilapi/utils/utils.go +++ b/tequilapi/utils/utils.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package utils import ( diff --git a/tequilapi/utils/utils_test.go b/tequilapi/utils/utils_test.go index c331b5bd0..aee8470e0 100644 --- a/tequilapi/utils/utils_test.go +++ b/tequilapi/utils/utils_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package utils import ( diff --git a/tequilapi/validation/validation.go b/tequilapi/validation/validation.go index 91a5c9339..832f67e68 100644 --- a/tequilapi/validation/validation.go +++ b/tequilapi/validation/validation.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package validation import ( diff --git a/tequilapi/validation/validation_test.go b/tequilapi/validation/validation_test.go index f5fca12f4..ef2b404a8 100644 --- a/tequilapi/validation/validation_test.go +++ b/tequilapi/validation/validation_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package validation import ( diff --git a/utils/cancelable.go b/utils/cancelable.go index cccf541ad..60aedfaae 100644 --- a/utils/cancelable.go +++ b/utils/cancelable.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package utils import "errors" diff --git a/utils/cancelable_test.go b/utils/cancelable_test.go index 1fd3030fe..d99d21c7e 100644 --- a/utils/cancelable_test.go +++ b/utils/cancelable_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package utils import ( diff --git a/utils/once.go b/utils/once.go index da7c68f21..4832310a0 100644 --- a/utils/once.go +++ b/utils/once.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package utils import "sync" diff --git a/utils/once_test.go b/utils/once_test.go index aa942c5bc..d8240fa4c 100644 --- a/utils/once_test.go +++ b/utils/once_test.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package utils import ( diff --git a/utils/settable_clock.go b/utils/settable_clock.go index 6d23f845a..221b16dfb 100644 --- a/utils/settable_clock.go +++ b/utils/settable_clock.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + package utils import "time" diff --git a/version/version.go b/version/version.go index d034f1026..073f5793d 100644 --- a/version/version.go +++ b/version/version.go @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2018 The Mysterium Network Authors + * + * 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 . + */ + // Package version contains build information of executable usually provided by // automated build systems like Travis. Default values are populated if not overriden by build system package version From fdfcaf057e05610cb701e04930ab5f38353ba796 Mon Sep 17 00:00:00 2001 From: Donatas Kucinskas Date: Fri, 18 May 2018 09:23:32 +0300 Subject: [PATCH 3/4] Unify license authors --- client/connection/interface.go | 2 +- client/connection/manager.go | 2 +- client/connection/manager_test.go | 2 +- client/connection/openvpn.go | 2 +- client/connection/status.go | 2 +- client/promise/dto/promise_body.go | 2 +- client/promise/dto/signature.go | 2 +- client/promise/dto/signed_promise.go | 2 +- client/promise/promise_test.go | 2 +- cmd/commands/cli/command_cli.go | 2 +- cmd/commands/cli/io.go | 2 +- cmd/commands/client/command_client.go | 2 +- cmd/commands/client/options.go | 2 +- cmd/commands/server/command_server.go | 2 +- cmd/commands/server/command_server_test.go | 2 +- cmd/commands/server/factory.go | 2 +- cmd/commands/server/identity/handler.go | 2 +- cmd/commands/server/identity/handler_fake.go | 2 +- cmd/commands/server/identity/handler_test.go | 2 +- cmd/commands/server/identity/interface.go | 2 +- cmd/commands/server/identity/loading.go | 2 +- cmd/commands/server/identity/loading_test.go | 2 +- cmd/commands/server/options.go | 2 +- cmd/config.go | 2 +- cmd/directory.go | 2 +- cmd/interrupts.go | 2 +- cmd/mysterium_client/mysterium_client.go | 2 +- cmd/mysterium_server/mysterium_server.go | 2 +- cmd/stopper.go | 2 +- cmd/stopper_test.go | 2 +- communication/codec.go | 2 +- communication/codec_bytes.go | 2 +- communication/codec_bytes_test.go | 2 +- communication/codec_fake.go | 2 +- communication/codec_json.go | 2 +- communication/codec_json_test.go | 2 +- communication/interface.go | 2 +- communication/message.go | 2 +- communication/nats/connection_fake.go | 2 +- communication/nats/connection_interface.go | 2 +- communication/nats/dialog/codec_secured.go | 2 +- communication/nats/dialog/codec_secured_test.go | 2 +- communication/nats/dialog/create_consumer.go | 2 +- communication/nats/dialog/create_producer.go | 2 +- communication/nats/dialog/dialog.go | 2 +- communication/nats/dialog/dialog_establisher.go | 2 +- communication/nats/dialog/dialog_establisher_test.go | 2 +- communication/nats/dialog/dialog_waiter.go | 2 +- communication/nats/dialog/dialog_waiter_test.go | 2 +- communication/nats/dialog/dto.go | 2 +- communication/nats/dialog/dto_request_test.go | 2 +- communication/nats/dialog/dto_response_test.go | 2 +- communication/nats/discovery/address.go | 2 +- communication/nats/discovery/address_test.go | 2 +- communication/nats/discovery/bootstrap.go | 2 +- communication/nats/discovery/bootstrap_test.go | 2 +- communication/nats/discovery/config.go | 2 +- communication/nats/discovery/contact.go | 2 +- communication/nats/discovery/contact_test.go | 2 +- communication/nats/message_bytes_test.go | 2 +- communication/nats/message_custom_test.go | 2 +- communication/nats/receiver.go | 2 +- communication/nats/receiver_test.go | 2 +- communication/nats/request_bytes_test.go | 2 +- communication/nats/request_custom_test.go | 2 +- communication/nats/sender.go | 2 +- communication/nats/sender_test.go | 2 +- communication/request.go | 2 +- datasize/bitsize.go | 2 +- datasize/bitsize_test.go | 2 +- e2e/connection_test.go | 2 +- identity/cache.go | 2 +- identity/cache_fake.go | 2 +- identity/cache_interface.go | 2 +- identity/cache_test.go | 2 +- identity/extractor.go | 2 +- identity/extractor_test.go | 2 +- identity/identity.go | 2 +- identity/integration_test.go | 2 +- identity/keystore_fake.go | 2 +- identity/keystore_interface.go | 2 +- identity/manager.go | 2 +- identity/manager_fake.go | 2 +- identity/manager_interface.go | 2 +- identity/manager_test.go | 2 +- identity/signature.go | 2 +- identity/signer.go | 2 +- identity/signer_fake.go | 2 +- identity/signer_test.go | 2 +- identity/verifier.go | 2 +- identity/verifier_fake.go | 2 +- identity/verifier_test.go | 2 +- ip/dto.go | 2 +- ip/fake_resolver.go | 2 +- ip/resolver.go | 2 +- ip/rest_resolver.go | 2 +- location/cache.go | 2 +- location/cache_test.go | 2 +- location/detector.go | 2 +- location/detector_test.go | 2 +- location/interface.go | 2 +- location/location.go | 2 +- location/resolver.go | 2 +- location/resolver_fake.go | 2 +- location/resolver_test.go | 2 +- logconfig/config.go | 2 +- money/currency.go | 2 +- money/money.go | 2 +- money/money_test.go | 2 +- nat/factory_darwin.go | 2 +- nat/factory_linux.go | 2 +- nat/factory_windows.go | 2 +- nat/interface.go | 2 +- nat/service_fake.go | 2 +- nat/service_iptables.go | 2 +- openvpn/bootstrap.go | 2 +- openvpn/check.go | 2 +- openvpn/check_test.go | 2 +- openvpn/client.go | 2 +- openvpn/client_config.go | 2 +- openvpn/config.go | 2 +- openvpn/config_validator.go | 2 +- openvpn/config_validator_test.go | 2 +- openvpn/discovery/dto/bandwidth.go | 2 +- openvpn/discovery/dto/bandwidth_test.go | 2 +- openvpn/discovery/dto/payment_method_per_bytes.go | 2 +- openvpn/discovery/dto/payment_method_per_bytes_test.go | 2 +- openvpn/discovery/dto/payment_method_per_time.go | 2 +- openvpn/discovery/dto/payment_method_per_time_test.go | 2 +- openvpn/discovery/dto/service_definition.go | 2 +- openvpn/discovery/dto/service_definition_test.go | 2 +- openvpn/discovery/factory.go | 2 +- openvpn/discovery/factory_test.go | 2 +- openvpn/discovery/service_poposal_test.go | 2 +- openvpn/factory.go | 2 +- openvpn/management/connection.go | 2 +- openvpn/management/connection_mock.go | 2 +- openvpn/management/connection_test.go | 2 +- openvpn/management/listener.go | 2 +- openvpn/management/management.go | 2 +- openvpn/middlewares/client/auth/middleware.go | 2 +- openvpn/middlewares/client/auth/middleware_test.go | 2 +- .../middlewares/client/bytescount/composite_stats_handler.go | 2 +- .../client/bytescount/composite_stats_handler_test.go | 2 +- openvpn/middlewares/client/bytescount/dto.go | 2 +- openvpn/middlewares/client/bytescount/fake_stats_handler.go | 2 +- openvpn/middlewares/client/bytescount/middleware.go | 2 +- openvpn/middlewares/client/bytescount/middleware_test.go | 2 +- .../middlewares/client/bytescount/selective_stats_handler.go | 2 +- .../client/bytescount/selective_stats_handler_test.go | 2 +- openvpn/middlewares/client/bytescount/stats_keeper.go | 2 +- openvpn/middlewares/client/bytescount/stats_keeper_test.go | 2 +- openvpn/middlewares/client/bytescount/stats_saver.go | 2 +- openvpn/middlewares/client/bytescount/stats_saver_test.go | 2 +- openvpn/middlewares/client/bytescount/stats_sender.go | 2 +- openvpn/middlewares/server/auth/middleware.go | 2 +- openvpn/middlewares/server/auth/middleware_test.go | 2 +- openvpn/middlewares/server/auth/parsing.go | 2 +- openvpn/middlewares/server/auth/parsing_test.go | 2 +- openvpn/middlewares/state/middleware.go | 2 +- openvpn/middlewares/state/middleware_test.go | 2 +- openvpn/option_file.go | 2 +- openvpn/option_file_test.go | 2 +- openvpn/option_flag.go | 2 +- openvpn/option_flag_test.go | 2 +- openvpn/option_param.go | 2 +- openvpn/option_param_test.go | 2 +- openvpn/process.go | 2 +- openvpn/process_test.go | 2 +- openvpn/serializer_cli.go | 2 +- openvpn/serializer_cli_test.go | 2 +- openvpn/serializer_file.go | 2 +- openvpn/serializer_file_test.go | 2 +- openvpn/server.go | 2 +- openvpn/server_config.go | 2 +- openvpn/session/authentication.go | 2 +- openvpn/session/authentication_test.go | 2 +- openvpn/state.go | 2 +- openvpn/tls/ca.go | 2 +- openvpn/tls/ca_test.go | 2 +- openvpn/tls/cert_config.go | 2 +- openvpn/tls/ta.go | 2 +- openvpn/tls/ta_test.go | 2 +- openvpn/tls/tls.go | 2 +- openvpn/tls/tls_test.go | 2 +- openvpn/utils.go | 2 +- requests/request.go | 2 +- requests/request_test.go | 2 +- server/dto/create_identity.go | 2 +- server/dto/node_register_request.go | 2 +- server/dto/node_stats_request.go | 2 +- server/dto/proposal_unregister_request.go | 2 +- server/dto/proposals_request.go | 2 +- server/dto/proposals_response.go | 2 +- server/dto/session_stats.go | 2 +- server/interface.go | 2 +- server/mysterium_api.go | 2 +- server/mysterium_api_fake.go | 2 +- server/mysterium_api_test.go | 2 +- server/response.go | 2 +- server/response_test.go | 2 +- service_discovery/dto/contact.go | 2 +- service_discovery/dto/location.go | 2 +- service_discovery/dto/location_test.go | 2 +- service_discovery/dto/payment_method.go | 2 +- service_discovery/dto/service_definition.go | 2 +- service_discovery/dto/service_proposal.go | 2 +- service_discovery/dto/service_proposal_test.go | 2 +- session/create_consumer.go | 2 +- session/create_consumer_test.go | 2 +- session/create_producer.go | 2 +- session/dialog_handler.go | 2 +- session/dto.go | 2 +- session/generator.go | 2 +- session/generator_fake.go | 2 +- session/generator_test.go | 2 +- session/interface.go | 2 +- session/manager.go | 2 +- session/manager_fake.go | 2 +- session/manager_test.go | 2 +- tequilapi/api_test.go | 2 +- tequilapi/api_test_utils.go | 2 +- tequilapi/client/client.go | 2 +- tequilapi/client/dto.go | 2 +- tequilapi/client/http_client.go | 2 +- tequilapi/endpoints/connection.go | 2 +- tequilapi/endpoints/connection_test.go | 2 +- tequilapi/endpoints/health_check.go | 2 +- tequilapi/endpoints/health_check_test.go | 2 +- tequilapi/endpoints/identities.go | 2 +- tequilapi/endpoints/identities_test.go | 2 +- tequilapi/endpoints/location.go | 2 +- tequilapi/endpoints/location_test.go | 2 +- tequilapi/endpoints/proposals.go | 2 +- tequilapi/endpoints/proposals_test.go | 2 +- tequilapi/endpoints/stop.go | 2 +- tequilapi/endpoints/stop_test.go | 2 +- tequilapi/http_api_server.go | 2 +- tequilapi/http_api_server_test.go | 2 +- tequilapi/http_middlewares.go | 2 +- tequilapi/http_middlewares_test.go | 2 +- tequilapi/http_routes.go | 2 +- tequilapi/http_routes_test.go | 2 +- tequilapi/utils/utils.go | 2 +- tequilapi/utils/utils_test.go | 2 +- tequilapi/validation/validation.go | 2 +- tequilapi/validation/validation_test.go | 2 +- utils/cancelable.go | 2 +- utils/cancelable_test.go | 2 +- utils/once.go | 2 +- utils/once_test.go | 2 +- utils/settable_clock.go | 2 +- version/version.go | 2 +- 253 files changed, 253 insertions(+), 253 deletions(-) diff --git a/client/connection/interface.go b/client/connection/interface.go index 7ca58d0d0..ea5b7688b 100644 --- a/client/connection/interface.go +++ b/client/connection/interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/client/connection/manager.go b/client/connection/manager.go index 1b20a13e5..78dee2401 100644 --- a/client/connection/manager.go +++ b/client/connection/manager.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/client/connection/manager_test.go b/client/connection/manager_test.go index b03fc96ad..e1e67f728 100644 --- a/client/connection/manager_test.go +++ b/client/connection/manager_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/client/connection/openvpn.go b/client/connection/openvpn.go index cc946a812..f21c3b3c8 100644 --- a/client/connection/openvpn.go +++ b/client/connection/openvpn.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/client/connection/status.go b/client/connection/status.go index 887621cfa..e051cfb6f 100644 --- a/client/connection/status.go +++ b/client/connection/status.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/client/promise/dto/promise_body.go b/client/promise/dto/promise_body.go index 2ca61dce2..05f24cb71 100644 --- a/client/promise/dto/promise_body.go +++ b/client/promise/dto/promise_body.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/client/promise/dto/signature.go b/client/promise/dto/signature.go index f370955fb..b742341c7 100644 --- a/client/promise/dto/signature.go +++ b/client/promise/dto/signature.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/client/promise/dto/signed_promise.go b/client/promise/dto/signed_promise.go index 268def4c4..e02c9bfd9 100644 --- a/client/promise/dto/signed_promise.go +++ b/client/promise/dto/signed_promise.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/client/promise/promise_test.go b/client/promise/promise_test.go index 54ef80dae..c53c18310 100644 --- a/client/promise/promise_test.go +++ b/client/promise/promise_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/cli/command_cli.go b/cmd/commands/cli/command_cli.go index f7277c31f..0b1f58f6d 100644 --- a/cmd/commands/cli/command_cli.go +++ b/cmd/commands/cli/command_cli.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/cli/io.go b/cmd/commands/cli/io.go index 68eb6f225..21aed0246 100644 --- a/cmd/commands/cli/io.go +++ b/cmd/commands/cli/io.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/client/command_client.go b/cmd/commands/client/command_client.go index f5d514867..4bb757af7 100644 --- a/cmd/commands/client/command_client.go +++ b/cmd/commands/client/command_client.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/client/options.go b/cmd/commands/client/options.go index 2eec8b3c9..6ea559b8f 100644 --- a/cmd/commands/client/options.go +++ b/cmd/commands/client/options.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/command_server.go b/cmd/commands/server/command_server.go index d3ac81ae7..c1132eef2 100644 --- a/cmd/commands/server/command_server.go +++ b/cmd/commands/server/command_server.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/command_server_test.go b/cmd/commands/server/command_server_test.go index 3e5914bd3..f1716dc53 100644 --- a/cmd/commands/server/command_server_test.go +++ b/cmd/commands/server/command_server_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/factory.go b/cmd/commands/server/factory.go index 8c8008ae6..830808317 100644 --- a/cmd/commands/server/factory.go +++ b/cmd/commands/server/factory.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/identity/handler.go b/cmd/commands/server/identity/handler.go index 37636ece3..64aae581b 100644 --- a/cmd/commands/server/identity/handler.go +++ b/cmd/commands/server/identity/handler.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/identity/handler_fake.go b/cmd/commands/server/identity/handler_fake.go index 2562dcc40..933973be6 100644 --- a/cmd/commands/server/identity/handler_fake.go +++ b/cmd/commands/server/identity/handler_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/identity/handler_test.go b/cmd/commands/server/identity/handler_test.go index 617e236ca..6cab2fb18 100644 --- a/cmd/commands/server/identity/handler_test.go +++ b/cmd/commands/server/identity/handler_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/identity/interface.go b/cmd/commands/server/identity/interface.go index 2fc929211..008e2412c 100644 --- a/cmd/commands/server/identity/interface.go +++ b/cmd/commands/server/identity/interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/identity/loading.go b/cmd/commands/server/identity/loading.go index c94aac945..30ddf6cb2 100644 --- a/cmd/commands/server/identity/loading.go +++ b/cmd/commands/server/identity/loading.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/identity/loading_test.go b/cmd/commands/server/identity/loading_test.go index 1f1b69ec6..bab5d4416 100644 --- a/cmd/commands/server/identity/loading_test.go +++ b/cmd/commands/server/identity/loading_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/commands/server/options.go b/cmd/commands/server/options.go index 249889b80..43c0dafe0 100644 --- a/cmd/commands/server/options.go +++ b/cmd/commands/server/options.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/config.go b/cmd/config.go index 9e20341c6..bf68b9932 100644 --- a/cmd/config.go +++ b/cmd/config.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/directory.go b/cmd/directory.go index 160b6c97c..9b44b6de0 100644 --- a/cmd/directory.go +++ b/cmd/directory.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/interrupts.go b/cmd/interrupts.go index c2457095f..7d9afdcee 100644 --- a/cmd/interrupts.go +++ b/cmd/interrupts.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/mysterium_client/mysterium_client.go b/cmd/mysterium_client/mysterium_client.go index 1413589dc..d450a9da9 100644 --- a/cmd/mysterium_client/mysterium_client.go +++ b/cmd/mysterium_client/mysterium_client.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/mysterium_server/mysterium_server.go b/cmd/mysterium_server/mysterium_server.go index 6914c19f7..038d73c35 100644 --- a/cmd/mysterium_server/mysterium_server.go +++ b/cmd/mysterium_server/mysterium_server.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/stopper.go b/cmd/stopper.go index 3559f79de..4f271e131 100644 --- a/cmd/stopper.go +++ b/cmd/stopper.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/cmd/stopper_test.go b/cmd/stopper_test.go index f3d5ac897..d5c9e3841 100644 --- a/cmd/stopper_test.go +++ b/cmd/stopper_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/codec.go b/communication/codec.go index fd0360258..0a9005a15 100644 --- a/communication/codec.go +++ b/communication/codec.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/codec_bytes.go b/communication/codec_bytes.go index 71397af90..8d81672b0 100644 --- a/communication/codec_bytes.go +++ b/communication/codec_bytes.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/codec_bytes_test.go b/communication/codec_bytes_test.go index 24f3f0e0c..4ee408af7 100644 --- a/communication/codec_bytes_test.go +++ b/communication/codec_bytes_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/codec_fake.go b/communication/codec_fake.go index 393292e57..61432ee1f 100644 --- a/communication/codec_fake.go +++ b/communication/codec_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/codec_json.go b/communication/codec_json.go index afdb6d585..d14d853d2 100644 --- a/communication/codec_json.go +++ b/communication/codec_json.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/codec_json_test.go b/communication/codec_json_test.go index 6f4253b21..0ab02d4bc 100644 --- a/communication/codec_json_test.go +++ b/communication/codec_json_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/interface.go b/communication/interface.go index 04f0fe64d..89ef9266a 100644 --- a/communication/interface.go +++ b/communication/interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/message.go b/communication/message.go index fe9e0ec50..03b9a4c01 100644 --- a/communication/message.go +++ b/communication/message.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/connection_fake.go b/communication/nats/connection_fake.go index a7f342252..06af2fc62 100644 --- a/communication/nats/connection_fake.go +++ b/communication/nats/connection_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/connection_interface.go b/communication/nats/connection_interface.go index 531e19929..165d6f107 100644 --- a/communication/nats/connection_interface.go +++ b/communication/nats/connection_interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/codec_secured.go b/communication/nats/dialog/codec_secured.go index 7bae5d732..a2420cd48 100644 --- a/communication/nats/dialog/codec_secured.go +++ b/communication/nats/dialog/codec_secured.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/codec_secured_test.go b/communication/nats/dialog/codec_secured_test.go index b94533da4..d39070021 100644 --- a/communication/nats/dialog/codec_secured_test.go +++ b/communication/nats/dialog/codec_secured_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/create_consumer.go b/communication/nats/dialog/create_consumer.go index 2d4aadb10..a8cafc7e0 100644 --- a/communication/nats/dialog/create_consumer.go +++ b/communication/nats/dialog/create_consumer.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/create_producer.go b/communication/nats/dialog/create_producer.go index 28c76bfa6..5bac38033 100644 --- a/communication/nats/dialog/create_producer.go +++ b/communication/nats/dialog/create_producer.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/dialog.go b/communication/nats/dialog/dialog.go index 7628e091c..338aa843c 100644 --- a/communication/nats/dialog/dialog.go +++ b/communication/nats/dialog/dialog.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/dialog_establisher.go b/communication/nats/dialog/dialog_establisher.go index 229ca21c1..e635b64ff 100644 --- a/communication/nats/dialog/dialog_establisher.go +++ b/communication/nats/dialog/dialog_establisher.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/dialog_establisher_test.go b/communication/nats/dialog/dialog_establisher_test.go index be47e123b..b2257eb37 100644 --- a/communication/nats/dialog/dialog_establisher_test.go +++ b/communication/nats/dialog/dialog_establisher_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/dialog_waiter.go b/communication/nats/dialog/dialog_waiter.go index b3d0deeec..4ec918170 100644 --- a/communication/nats/dialog/dialog_waiter.go +++ b/communication/nats/dialog/dialog_waiter.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/dialog_waiter_test.go b/communication/nats/dialog/dialog_waiter_test.go index 680527c7a..ed6172cd0 100644 --- a/communication/nats/dialog/dialog_waiter_test.go +++ b/communication/nats/dialog/dialog_waiter_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/dto.go b/communication/nats/dialog/dto.go index 988456016..154c92eb2 100644 --- a/communication/nats/dialog/dto.go +++ b/communication/nats/dialog/dto.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/dto_request_test.go b/communication/nats/dialog/dto_request_test.go index cddd134d2..22a68d09e 100644 --- a/communication/nats/dialog/dto_request_test.go +++ b/communication/nats/dialog/dto_request_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/dialog/dto_response_test.go b/communication/nats/dialog/dto_response_test.go index b9ba25695..5cc5d6b89 100644 --- a/communication/nats/dialog/dto_response_test.go +++ b/communication/nats/dialog/dto_response_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/discovery/address.go b/communication/nats/discovery/address.go index 9a7ffbb06..f757ef8d9 100644 --- a/communication/nats/discovery/address.go +++ b/communication/nats/discovery/address.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/discovery/address_test.go b/communication/nats/discovery/address_test.go index 5416373d7..d6903621a 100644 --- a/communication/nats/discovery/address_test.go +++ b/communication/nats/discovery/address_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/discovery/bootstrap.go b/communication/nats/discovery/bootstrap.go index 2d68d4948..573c4434e 100644 --- a/communication/nats/discovery/bootstrap.go +++ b/communication/nats/discovery/bootstrap.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/discovery/bootstrap_test.go b/communication/nats/discovery/bootstrap_test.go index d550f1938..2c85297c3 100644 --- a/communication/nats/discovery/bootstrap_test.go +++ b/communication/nats/discovery/bootstrap_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/discovery/config.go b/communication/nats/discovery/config.go index e64c1c644..18032e590 100644 --- a/communication/nats/discovery/config.go +++ b/communication/nats/discovery/config.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/discovery/contact.go b/communication/nats/discovery/contact.go index 8cdfd4af0..5a7c45be1 100644 --- a/communication/nats/discovery/contact.go +++ b/communication/nats/discovery/contact.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/discovery/contact_test.go b/communication/nats/discovery/contact_test.go index 7546c14b0..c1577e209 100644 --- a/communication/nats/discovery/contact_test.go +++ b/communication/nats/discovery/contact_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/message_bytes_test.go b/communication/nats/message_bytes_test.go index 4188742ad..7b8c27621 100644 --- a/communication/nats/message_bytes_test.go +++ b/communication/nats/message_bytes_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/message_custom_test.go b/communication/nats/message_custom_test.go index f4808e72c..7396fd9ce 100644 --- a/communication/nats/message_custom_test.go +++ b/communication/nats/message_custom_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/receiver.go b/communication/nats/receiver.go index c1b6ae6b5..a199f6ca6 100644 --- a/communication/nats/receiver.go +++ b/communication/nats/receiver.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/receiver_test.go b/communication/nats/receiver_test.go index 20d47d0e5..61784fd8b 100644 --- a/communication/nats/receiver_test.go +++ b/communication/nats/receiver_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/request_bytes_test.go b/communication/nats/request_bytes_test.go index aedbdbe11..20d9ffdfe 100644 --- a/communication/nats/request_bytes_test.go +++ b/communication/nats/request_bytes_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/request_custom_test.go b/communication/nats/request_custom_test.go index d1e0379e4..33b982cb8 100644 --- a/communication/nats/request_custom_test.go +++ b/communication/nats/request_custom_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/sender.go b/communication/nats/sender.go index d45e88f2f..53ba850c2 100644 --- a/communication/nats/sender.go +++ b/communication/nats/sender.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/nats/sender_test.go b/communication/nats/sender_test.go index cfa9d335b..5eb2ca036 100644 --- a/communication/nats/sender_test.go +++ b/communication/nats/sender_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/communication/request.go b/communication/request.go index e7d09ba36..14afd2bde 100644 --- a/communication/request.go +++ b/communication/request.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/datasize/bitsize.go b/datasize/bitsize.go index 1dc84a29b..0259b8fc3 100644 --- a/datasize/bitsize.go +++ b/datasize/bitsize.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/datasize/bitsize_test.go b/datasize/bitsize_test.go index 9b14aef6b..3184a5d49 100644 --- a/datasize/bitsize_test.go +++ b/datasize/bitsize_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/e2e/connection_test.go b/e2e/connection_test.go index 26417f13a..abe710217 100644 --- a/e2e/connection_test.go +++ b/e2e/connection_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/cache.go b/identity/cache.go index 1f16205a0..a9b919d75 100644 --- a/identity/cache.go +++ b/identity/cache.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/cache_fake.go b/identity/cache_fake.go index 596e98beb..6a4c847dc 100644 --- a/identity/cache_fake.go +++ b/identity/cache_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/cache_interface.go b/identity/cache_interface.go index 8ce4d2049..29fb78be5 100644 --- a/identity/cache_interface.go +++ b/identity/cache_interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/cache_test.go b/identity/cache_test.go index 18b6a6afe..29536ab07 100644 --- a/identity/cache_test.go +++ b/identity/cache_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/extractor.go b/identity/extractor.go index f80217732..538af1c47 100644 --- a/identity/extractor.go +++ b/identity/extractor.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/extractor_test.go b/identity/extractor_test.go index dc595bb5b..3cf15eded 100644 --- a/identity/extractor_test.go +++ b/identity/extractor_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/identity.go b/identity/identity.go index e3246d99d..0e74cfdc8 100644 --- a/identity/identity.go +++ b/identity/identity.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/integration_test.go b/identity/integration_test.go index 69097b578..4ac3dcf43 100644 --- a/identity/integration_test.go +++ b/identity/integration_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/keystore_fake.go b/identity/keystore_fake.go index d8c60b318..7d14b8512 100644 --- a/identity/keystore_fake.go +++ b/identity/keystore_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/keystore_interface.go b/identity/keystore_interface.go index 9f84b9e67..9f4bbaa26 100644 --- a/identity/keystore_interface.go +++ b/identity/keystore_interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/manager.go b/identity/manager.go index 4dec3b19f..33fd33dd1 100644 --- a/identity/manager.go +++ b/identity/manager.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/manager_fake.go b/identity/manager_fake.go index 8dcc697a7..4e0bcd854 100644 --- a/identity/manager_fake.go +++ b/identity/manager_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/manager_interface.go b/identity/manager_interface.go index cd73d4026..5ee80f53f 100644 --- a/identity/manager_interface.go +++ b/identity/manager_interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/manager_test.go b/identity/manager_test.go index bca56c4be..13aa9bf55 100644 --- a/identity/manager_test.go +++ b/identity/manager_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/signature.go b/identity/signature.go index e54f91b93..61a4d2919 100644 --- a/identity/signature.go +++ b/identity/signature.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/signer.go b/identity/signer.go index 8a9b92260..38f898860 100644 --- a/identity/signer.go +++ b/identity/signer.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/signer_fake.go b/identity/signer_fake.go index 11ba010b4..82e13cb7e 100644 --- a/identity/signer_fake.go +++ b/identity/signer_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/signer_test.go b/identity/signer_test.go index 0e006167e..72ebe3390 100644 --- a/identity/signer_test.go +++ b/identity/signer_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/verifier.go b/identity/verifier.go index f763655f6..d131bdb7b 100644 --- a/identity/verifier.go +++ b/identity/verifier.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/verifier_fake.go b/identity/verifier_fake.go index 96a0a13ed..e5411c118 100644 --- a/identity/verifier_fake.go +++ b/identity/verifier_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/identity/verifier_test.go b/identity/verifier_test.go index a087b0a04..8bf7d9122 100644 --- a/identity/verifier_test.go +++ b/identity/verifier_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/ip/dto.go b/ip/dto.go index 3e6b8b695..8fca5fe41 100644 --- a/ip/dto.go +++ b/ip/dto.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/ip/fake_resolver.go b/ip/fake_resolver.go index 71e8ba78b..78f7b3a36 100644 --- a/ip/fake_resolver.go +++ b/ip/fake_resolver.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/ip/resolver.go b/ip/resolver.go index ec85f4353..13cb905ac 100644 --- a/ip/resolver.go +++ b/ip/resolver.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/ip/rest_resolver.go b/ip/rest_resolver.go index 8ae074b39..d17550973 100644 --- a/ip/rest_resolver.go +++ b/ip/rest_resolver.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/location/cache.go b/location/cache.go index 8021a31f2..cd3d59821 100644 --- a/location/cache.go +++ b/location/cache.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/location/cache_test.go b/location/cache_test.go index cb3e867ee..0ac0d4713 100644 --- a/location/cache_test.go +++ b/location/cache_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/location/detector.go b/location/detector.go index 8d8c5b922..62dfd223c 100644 --- a/location/detector.go +++ b/location/detector.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/location/detector_test.go b/location/detector_test.go index e01206f26..dfeeeb017 100644 --- a/location/detector_test.go +++ b/location/detector_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/location/interface.go b/location/interface.go index e150f2e16..6d98beea0 100644 --- a/location/interface.go +++ b/location/interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/location/location.go b/location/location.go index 66fd78c7d..72c79ccca 100644 --- a/location/location.go +++ b/location/location.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/location/resolver.go b/location/resolver.go index 5e7cb0408..41b799e70 100644 --- a/location/resolver.go +++ b/location/resolver.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/location/resolver_fake.go b/location/resolver_fake.go index 36ead855a..ab2baa541 100644 --- a/location/resolver_fake.go +++ b/location/resolver_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/location/resolver_test.go b/location/resolver_test.go index 07e2c9f20..0722e2561 100644 --- a/location/resolver_test.go +++ b/location/resolver_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/logconfig/config.go b/logconfig/config.go index d2d4158b2..ddcb3872a 100644 --- a/logconfig/config.go +++ b/logconfig/config.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/money/currency.go b/money/currency.go index dd343f959..9cbba8830 100644 --- a/money/currency.go +++ b/money/currency.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/money/money.go b/money/money.go index a648cbbd9..a88789941 100644 --- a/money/money.go +++ b/money/money.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/money/money_test.go b/money/money_test.go index 3fad1350b..6f585fa7a 100644 --- a/money/money_test.go +++ b/money/money_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/nat/factory_darwin.go b/nat/factory_darwin.go index 3b96503f1..c59b3e75f 100644 --- a/nat/factory_darwin.go +++ b/nat/factory_darwin.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/nat/factory_linux.go b/nat/factory_linux.go index 5e539ff9e..9ceda1049 100644 --- a/nat/factory_linux.go +++ b/nat/factory_linux.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/nat/factory_windows.go b/nat/factory_windows.go index 3b96503f1..c59b3e75f 100644 --- a/nat/factory_windows.go +++ b/nat/factory_windows.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/nat/interface.go b/nat/interface.go index 5d93c7525..79d79b4af 100644 --- a/nat/interface.go +++ b/nat/interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/nat/service_fake.go b/nat/service_fake.go index d48fb1023..0b4c5f779 100644 --- a/nat/service_fake.go +++ b/nat/service_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/nat/service_iptables.go b/nat/service_iptables.go index 998e52ca3..b548bc8d9 100644 --- a/nat/service_iptables.go +++ b/nat/service_iptables.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/bootstrap.go b/openvpn/bootstrap.go index 4cc573409..e323fdaab 100644 --- a/openvpn/bootstrap.go +++ b/openvpn/bootstrap.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/check.go b/openvpn/check.go index 7daae5940..604a48da5 100644 --- a/openvpn/check.go +++ b/openvpn/check.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/check_test.go b/openvpn/check_test.go index daa6cb948..1ee0b5f89 100644 --- a/openvpn/check_test.go +++ b/openvpn/check_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/client.go b/openvpn/client.go index 33b025648..c63bdfa46 100644 --- a/openvpn/client.go +++ b/openvpn/client.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/client_config.go b/openvpn/client_config.go index 12442ce5b..91749dbb5 100644 --- a/openvpn/client_config.go +++ b/openvpn/client_config.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/config.go b/openvpn/config.go index b59a3a094..beccabb82 100644 --- a/openvpn/config.go +++ b/openvpn/config.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/config_validator.go b/openvpn/config_validator.go index aa74e9253..e3895358d 100644 --- a/openvpn/config_validator.go +++ b/openvpn/config_validator.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/config_validator_test.go b/openvpn/config_validator_test.go index 5fc85b389..c7b69bc5a 100644 --- a/openvpn/config_validator_test.go +++ b/openvpn/config_validator_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/dto/bandwidth.go b/openvpn/discovery/dto/bandwidth.go index 6556d1346..1f006f06b 100644 --- a/openvpn/discovery/dto/bandwidth.go +++ b/openvpn/discovery/dto/bandwidth.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/dto/bandwidth_test.go b/openvpn/discovery/dto/bandwidth_test.go index f016b7fe3..02e6914aa 100644 --- a/openvpn/discovery/dto/bandwidth_test.go +++ b/openvpn/discovery/dto/bandwidth_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/dto/payment_method_per_bytes.go b/openvpn/discovery/dto/payment_method_per_bytes.go index 56a759730..7dbdd5bf5 100644 --- a/openvpn/discovery/dto/payment_method_per_bytes.go +++ b/openvpn/discovery/dto/payment_method_per_bytes.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/dto/payment_method_per_bytes_test.go b/openvpn/discovery/dto/payment_method_per_bytes_test.go index 81778111c..aa5343225 100644 --- a/openvpn/discovery/dto/payment_method_per_bytes_test.go +++ b/openvpn/discovery/dto/payment_method_per_bytes_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/dto/payment_method_per_time.go b/openvpn/discovery/dto/payment_method_per_time.go index cc1b88fd3..6ec04adeb 100644 --- a/openvpn/discovery/dto/payment_method_per_time.go +++ b/openvpn/discovery/dto/payment_method_per_time.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/dto/payment_method_per_time_test.go b/openvpn/discovery/dto/payment_method_per_time_test.go index 3a22a95cb..373f5ac96 100644 --- a/openvpn/discovery/dto/payment_method_per_time_test.go +++ b/openvpn/discovery/dto/payment_method_per_time_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/dto/service_definition.go b/openvpn/discovery/dto/service_definition.go index 30dd506ed..de30d6b9c 100644 --- a/openvpn/discovery/dto/service_definition.go +++ b/openvpn/discovery/dto/service_definition.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/dto/service_definition_test.go b/openvpn/discovery/dto/service_definition_test.go index ae857e8fa..304097ad1 100644 --- a/openvpn/discovery/dto/service_definition_test.go +++ b/openvpn/discovery/dto/service_definition_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/factory.go b/openvpn/discovery/factory.go index 5f519da80..518e2ea59 100644 --- a/openvpn/discovery/factory.go +++ b/openvpn/discovery/factory.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/factory_test.go b/openvpn/discovery/factory_test.go index 71e27c25a..6bc9d6746 100644 --- a/openvpn/discovery/factory_test.go +++ b/openvpn/discovery/factory_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/discovery/service_poposal_test.go b/openvpn/discovery/service_poposal_test.go index 4dda93475..026198e42 100644 --- a/openvpn/discovery/service_poposal_test.go +++ b/openvpn/discovery/service_poposal_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/factory.go b/openvpn/factory.go index 664f52b75..e1c894458 100644 --- a/openvpn/factory.go +++ b/openvpn/factory.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/management/connection.go b/openvpn/management/connection.go index fb5502aa8..e4d394346 100644 --- a/openvpn/management/connection.go +++ b/openvpn/management/connection.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/management/connection_mock.go b/openvpn/management/connection_mock.go index c471ea1d8..5d6887ddd 100644 --- a/openvpn/management/connection_mock.go +++ b/openvpn/management/connection_mock.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/management/connection_test.go b/openvpn/management/connection_test.go index 07bc2a4ee..5a882c86a 100644 --- a/openvpn/management/connection_test.go +++ b/openvpn/management/connection_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/management/listener.go b/openvpn/management/listener.go index 3a96d3bc3..e200a6331 100644 --- a/openvpn/management/listener.go +++ b/openvpn/management/listener.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/management/management.go b/openvpn/management/management.go index c7776c7b4..ffd6d2db2 100644 --- a/openvpn/management/management.go +++ b/openvpn/management/management.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/auth/middleware.go b/openvpn/middlewares/client/auth/middleware.go index 086913d72..f242d6928 100644 --- a/openvpn/middlewares/client/auth/middleware.go +++ b/openvpn/middlewares/client/auth/middleware.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/auth/middleware_test.go b/openvpn/middlewares/client/auth/middleware_test.go index d1340fd7c..7b0b98d62 100644 --- a/openvpn/middlewares/client/auth/middleware_test.go +++ b/openvpn/middlewares/client/auth/middleware_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/composite_stats_handler.go b/openvpn/middlewares/client/bytescount/composite_stats_handler.go index 0e3b5a436..d05f6dfb0 100644 --- a/openvpn/middlewares/client/bytescount/composite_stats_handler.go +++ b/openvpn/middlewares/client/bytescount/composite_stats_handler.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/composite_stats_handler_test.go b/openvpn/middlewares/client/bytescount/composite_stats_handler_test.go index 1aa49fa71..c990f1b0c 100644 --- a/openvpn/middlewares/client/bytescount/composite_stats_handler_test.go +++ b/openvpn/middlewares/client/bytescount/composite_stats_handler_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/dto.go b/openvpn/middlewares/client/bytescount/dto.go index 8406a3e7b..0b2f0b4c9 100644 --- a/openvpn/middlewares/client/bytescount/dto.go +++ b/openvpn/middlewares/client/bytescount/dto.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/fake_stats_handler.go b/openvpn/middlewares/client/bytescount/fake_stats_handler.go index a8e393a2b..564abfeb3 100644 --- a/openvpn/middlewares/client/bytescount/fake_stats_handler.go +++ b/openvpn/middlewares/client/bytescount/fake_stats_handler.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/middleware.go b/openvpn/middlewares/client/bytescount/middleware.go index f927a8372..a1a8deed2 100644 --- a/openvpn/middlewares/client/bytescount/middleware.go +++ b/openvpn/middlewares/client/bytescount/middleware.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/middleware_test.go b/openvpn/middlewares/client/bytescount/middleware_test.go index 7151435fd..ea3db66a7 100644 --- a/openvpn/middlewares/client/bytescount/middleware_test.go +++ b/openvpn/middlewares/client/bytescount/middleware_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/selective_stats_handler.go b/openvpn/middlewares/client/bytescount/selective_stats_handler.go index 117157c74..5f6a858c9 100644 --- a/openvpn/middlewares/client/bytescount/selective_stats_handler.go +++ b/openvpn/middlewares/client/bytescount/selective_stats_handler.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/selective_stats_handler_test.go b/openvpn/middlewares/client/bytescount/selective_stats_handler_test.go index 97aa87df8..324bb5517 100644 --- a/openvpn/middlewares/client/bytescount/selective_stats_handler_test.go +++ b/openvpn/middlewares/client/bytescount/selective_stats_handler_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/stats_keeper.go b/openvpn/middlewares/client/bytescount/stats_keeper.go index 72e05975f..878a19021 100644 --- a/openvpn/middlewares/client/bytescount/stats_keeper.go +++ b/openvpn/middlewares/client/bytescount/stats_keeper.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/stats_keeper_test.go b/openvpn/middlewares/client/bytescount/stats_keeper_test.go index 2f5005a4a..148164131 100644 --- a/openvpn/middlewares/client/bytescount/stats_keeper_test.go +++ b/openvpn/middlewares/client/bytescount/stats_keeper_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/stats_saver.go b/openvpn/middlewares/client/bytescount/stats_saver.go index f2adb3ec5..9000b1d79 100644 --- a/openvpn/middlewares/client/bytescount/stats_saver.go +++ b/openvpn/middlewares/client/bytescount/stats_saver.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/stats_saver_test.go b/openvpn/middlewares/client/bytescount/stats_saver_test.go index b4b8b0665..fb9023c2a 100644 --- a/openvpn/middlewares/client/bytescount/stats_saver_test.go +++ b/openvpn/middlewares/client/bytescount/stats_saver_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/client/bytescount/stats_sender.go b/openvpn/middlewares/client/bytescount/stats_sender.go index a23d4b945..ff17b1280 100644 --- a/openvpn/middlewares/client/bytescount/stats_sender.go +++ b/openvpn/middlewares/client/bytescount/stats_sender.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/server/auth/middleware.go b/openvpn/middlewares/server/auth/middleware.go index cd470a529..8cadea02f 100644 --- a/openvpn/middlewares/server/auth/middleware.go +++ b/openvpn/middlewares/server/auth/middleware.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/server/auth/middleware_test.go b/openvpn/middlewares/server/auth/middleware_test.go index de8232e8b..c48535780 100644 --- a/openvpn/middlewares/server/auth/middleware_test.go +++ b/openvpn/middlewares/server/auth/middleware_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/server/auth/parsing.go b/openvpn/middlewares/server/auth/parsing.go index 8b5761899..c3306e7e2 100644 --- a/openvpn/middlewares/server/auth/parsing.go +++ b/openvpn/middlewares/server/auth/parsing.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/server/auth/parsing_test.go b/openvpn/middlewares/server/auth/parsing_test.go index 8b095dbcc..185ee1cab 100644 --- a/openvpn/middlewares/server/auth/parsing_test.go +++ b/openvpn/middlewares/server/auth/parsing_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/state/middleware.go b/openvpn/middlewares/state/middleware.go index 8f50f37af..a7d190a71 100644 --- a/openvpn/middlewares/state/middleware.go +++ b/openvpn/middlewares/state/middleware.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/middlewares/state/middleware_test.go b/openvpn/middlewares/state/middleware_test.go index 1a8ff18b1..b29e1b8ff 100644 --- a/openvpn/middlewares/state/middleware_test.go +++ b/openvpn/middlewares/state/middleware_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/option_file.go b/openvpn/option_file.go index 08737a607..9df26b7b8 100644 --- a/openvpn/option_file.go +++ b/openvpn/option_file.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/option_file_test.go b/openvpn/option_file_test.go index 5274797c5..dea3b61fe 100644 --- a/openvpn/option_file_test.go +++ b/openvpn/option_file_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/option_flag.go b/openvpn/option_flag.go index cbe4be5f4..c46a4cb45 100644 --- a/openvpn/option_flag.go +++ b/openvpn/option_flag.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/option_flag_test.go b/openvpn/option_flag_test.go index 6214242fe..aa5d5c6d0 100644 --- a/openvpn/option_flag_test.go +++ b/openvpn/option_flag_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/option_param.go b/openvpn/option_param.go index 969510c09..750580ab6 100644 --- a/openvpn/option_param.go +++ b/openvpn/option_param.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/option_param_test.go b/openvpn/option_param_test.go index f56d223ed..7a5251629 100644 --- a/openvpn/option_param_test.go +++ b/openvpn/option_param_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/process.go b/openvpn/process.go index 19e681743..cd34b9ed3 100644 --- a/openvpn/process.go +++ b/openvpn/process.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/process_test.go b/openvpn/process_test.go index c44ebb889..c534667e0 100644 --- a/openvpn/process_test.go +++ b/openvpn/process_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/serializer_cli.go b/openvpn/serializer_cli.go index 6e550a84d..4dd635617 100644 --- a/openvpn/serializer_cli.go +++ b/openvpn/serializer_cli.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/serializer_cli_test.go b/openvpn/serializer_cli_test.go index 907290288..8b90c666a 100644 --- a/openvpn/serializer_cli_test.go +++ b/openvpn/serializer_cli_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/serializer_file.go b/openvpn/serializer_file.go index 6aa5fa45d..a9f1c0008 100644 --- a/openvpn/serializer_file.go +++ b/openvpn/serializer_file.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/serializer_file_test.go b/openvpn/serializer_file_test.go index 8a07f279a..7be279f46 100644 --- a/openvpn/serializer_file_test.go +++ b/openvpn/serializer_file_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/server.go b/openvpn/server.go index 09016313c..92646872a 100644 --- a/openvpn/server.go +++ b/openvpn/server.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/server_config.go b/openvpn/server_config.go index bb2db22ab..a54ab44ca 100644 --- a/openvpn/server_config.go +++ b/openvpn/server_config.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/session/authentication.go b/openvpn/session/authentication.go index a89b8f226..bf483d503 100644 --- a/openvpn/session/authentication.go +++ b/openvpn/session/authentication.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/session/authentication_test.go b/openvpn/session/authentication_test.go index c2a2790d4..99af31e68 100644 --- a/openvpn/session/authentication_test.go +++ b/openvpn/session/authentication_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/state.go b/openvpn/state.go index a4391f3fa..41c6c335c 100644 --- a/openvpn/state.go +++ b/openvpn/state.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/tls/ca.go b/openvpn/tls/ca.go index 70c6a5fd6..1f26de30b 100644 --- a/openvpn/tls/ca.go +++ b/openvpn/tls/ca.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/tls/ca_test.go b/openvpn/tls/ca_test.go index 9b4525adc..ab0a332c1 100644 --- a/openvpn/tls/ca_test.go +++ b/openvpn/tls/ca_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/tls/cert_config.go b/openvpn/tls/cert_config.go index 32a28b714..3bd73a3fd 100644 --- a/openvpn/tls/cert_config.go +++ b/openvpn/tls/cert_config.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/tls/ta.go b/openvpn/tls/ta.go index 1b332f2eb..edde00ca1 100644 --- a/openvpn/tls/ta.go +++ b/openvpn/tls/ta.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/tls/ta_test.go b/openvpn/tls/ta_test.go index 6f3b15422..0bf2f9fca 100644 --- a/openvpn/tls/ta_test.go +++ b/openvpn/tls/ta_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/tls/tls.go b/openvpn/tls/tls.go index c1666b602..106bdd340 100644 --- a/openvpn/tls/tls.go +++ b/openvpn/tls/tls.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/tls/tls_test.go b/openvpn/tls/tls_test.go index 20e2860d9..10b596cff 100644 --- a/openvpn/tls/tls_test.go +++ b/openvpn/tls/tls_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/openvpn/utils.go b/openvpn/utils.go index 507bef791..5204acf4a 100644 --- a/openvpn/utils.go +++ b/openvpn/utils.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/requests/request.go b/requests/request.go index 329789abd..8215d002a 100644 --- a/requests/request.go +++ b/requests/request.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/requests/request_test.go b/requests/request_test.go index c38f7c176..b14036d00 100644 --- a/requests/request_test.go +++ b/requests/request_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/dto/create_identity.go b/server/dto/create_identity.go index 3a7900490..78a533791 100644 --- a/server/dto/create_identity.go +++ b/server/dto/create_identity.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/dto/node_register_request.go b/server/dto/node_register_request.go index 2424e6e99..a4b8cf881 100644 --- a/server/dto/node_register_request.go +++ b/server/dto/node_register_request.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/dto/node_stats_request.go b/server/dto/node_stats_request.go index dcb7be576..7e083d9a9 100644 --- a/server/dto/node_stats_request.go +++ b/server/dto/node_stats_request.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/dto/proposal_unregister_request.go b/server/dto/proposal_unregister_request.go index 38ddf0b74..3c28ff856 100644 --- a/server/dto/proposal_unregister_request.go +++ b/server/dto/proposal_unregister_request.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/dto/proposals_request.go b/server/dto/proposals_request.go index d6e76f59a..1d0d39498 100644 --- a/server/dto/proposals_request.go +++ b/server/dto/proposals_request.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/dto/proposals_response.go b/server/dto/proposals_response.go index 56e8705cf..214b0edcf 100644 --- a/server/dto/proposals_response.go +++ b/server/dto/proposals_response.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/dto/session_stats.go b/server/dto/session_stats.go index 6fefaae81..e085970bc 100644 --- a/server/dto/session_stats.go +++ b/server/dto/session_stats.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/interface.go b/server/interface.go index af0d11a04..4fa043d6e 100644 --- a/server/interface.go +++ b/server/interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/mysterium_api.go b/server/mysterium_api.go index 98c6b63b5..e1a8dd9e4 100644 --- a/server/mysterium_api.go +++ b/server/mysterium_api.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/mysterium_api_fake.go b/server/mysterium_api_fake.go index 3625e4f1e..302d0026e 100644 --- a/server/mysterium_api_fake.go +++ b/server/mysterium_api_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/mysterium_api_test.go b/server/mysterium_api_test.go index cd596ea6b..766f996e9 100644 --- a/server/mysterium_api_test.go +++ b/server/mysterium_api_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/response.go b/server/response.go index 7ff0d2ed9..ec3d1e365 100644 --- a/server/response.go +++ b/server/response.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/server/response_test.go b/server/response_test.go index c508dfc42..660756125 100644 --- a/server/response_test.go +++ b/server/response_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/service_discovery/dto/contact.go b/service_discovery/dto/contact.go index cc13fe346..8361191e2 100644 --- a/service_discovery/dto/contact.go +++ b/service_discovery/dto/contact.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/service_discovery/dto/location.go b/service_discovery/dto/location.go index 983d7e765..d26623f63 100644 --- a/service_discovery/dto/location.go +++ b/service_discovery/dto/location.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/service_discovery/dto/location_test.go b/service_discovery/dto/location_test.go index 972fc04a0..aa6c2523e 100644 --- a/service_discovery/dto/location_test.go +++ b/service_discovery/dto/location_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/service_discovery/dto/payment_method.go b/service_discovery/dto/payment_method.go index bfed7d20c..e4a1f7559 100644 --- a/service_discovery/dto/payment_method.go +++ b/service_discovery/dto/payment_method.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/service_discovery/dto/service_definition.go b/service_discovery/dto/service_definition.go index fb0cccb50..4de7ab89b 100644 --- a/service_discovery/dto/service_definition.go +++ b/service_discovery/dto/service_definition.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/service_discovery/dto/service_proposal.go b/service_discovery/dto/service_proposal.go index 8b1734ea7..f3cf43b41 100644 --- a/service_discovery/dto/service_proposal.go +++ b/service_discovery/dto/service_proposal.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/service_discovery/dto/service_proposal_test.go b/service_discovery/dto/service_proposal_test.go index f92b5c677..54bdfa95a 100644 --- a/service_discovery/dto/service_proposal_test.go +++ b/service_discovery/dto/service_proposal_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/create_consumer.go b/session/create_consumer.go index fac29ad9c..617d5f0f1 100644 --- a/session/create_consumer.go +++ b/session/create_consumer.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/create_consumer_test.go b/session/create_consumer_test.go index b3892307a..34ad0f63a 100644 --- a/session/create_consumer_test.go +++ b/session/create_consumer_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/create_producer.go b/session/create_producer.go index f0ef8d4dd..f9b9b1018 100644 --- a/session/create_producer.go +++ b/session/create_producer.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/dialog_handler.go b/session/dialog_handler.go index f4f05ac74..02eac8ee3 100644 --- a/session/dialog_handler.go +++ b/session/dialog_handler.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/dto.go b/session/dto.go index fa680cf51..689ff2eb2 100644 --- a/session/dto.go +++ b/session/dto.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/generator.go b/session/generator.go index 452c416c4..757e8b2ce 100644 --- a/session/generator.go +++ b/session/generator.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/generator_fake.go b/session/generator_fake.go index d6da7b044..c95ceb8d4 100644 --- a/session/generator_fake.go +++ b/session/generator_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/generator_test.go b/session/generator_test.go index b1448e323..5c41ac952 100644 --- a/session/generator_test.go +++ b/session/generator_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/interface.go b/session/interface.go index a5f6bb94d..d20e7dc07 100644 --- a/session/interface.go +++ b/session/interface.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/manager.go b/session/manager.go index 9f2162780..24dfe7dde 100644 --- a/session/manager.go +++ b/session/manager.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/manager_fake.go b/session/manager_fake.go index e58df26e1..f1660ee1b 100644 --- a/session/manager_fake.go +++ b/session/manager_fake.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/session/manager_test.go b/session/manager_test.go index 9a7920a6a..7ff5f1bca 100644 --- a/session/manager_test.go +++ b/session/manager_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/api_test.go b/tequilapi/api_test.go index d0941e7c7..2f5677cc8 100644 --- a/tequilapi/api_test.go +++ b/tequilapi/api_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/api_test_utils.go b/tequilapi/api_test_utils.go index 737a81c96..77be91773 100644 --- a/tequilapi/api_test_utils.go +++ b/tequilapi/api_test_utils.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/client/client.go b/tequilapi/client/client.go index e19aa269c..dac9cba0b 100644 --- a/tequilapi/client/client.go +++ b/tequilapi/client/client.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/client/dto.go b/tequilapi/client/dto.go index d388f53f2..ee7639f06 100644 --- a/tequilapi/client/dto.go +++ b/tequilapi/client/dto.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/client/http_client.go b/tequilapi/client/http_client.go index 8d673434e..d94ac3d74 100644 --- a/tequilapi/client/http_client.go +++ b/tequilapi/client/http_client.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/connection.go b/tequilapi/endpoints/connection.go index c4cc32689..425af85d5 100644 --- a/tequilapi/endpoints/connection.go +++ b/tequilapi/endpoints/connection.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/connection_test.go b/tequilapi/endpoints/connection_test.go index 2a5b4482e..8cb63e1d4 100644 --- a/tequilapi/endpoints/connection_test.go +++ b/tequilapi/endpoints/connection_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/health_check.go b/tequilapi/endpoints/health_check.go index 597e7690c..374e2d35e 100644 --- a/tequilapi/endpoints/health_check.go +++ b/tequilapi/endpoints/health_check.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/health_check_test.go b/tequilapi/endpoints/health_check_test.go index 150459dc2..bd04cc8a5 100644 --- a/tequilapi/endpoints/health_check_test.go +++ b/tequilapi/endpoints/health_check_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/identities.go b/tequilapi/endpoints/identities.go index 57af4efb3..5b3ffc3dc 100644 --- a/tequilapi/endpoints/identities.go +++ b/tequilapi/endpoints/identities.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/identities_test.go b/tequilapi/endpoints/identities_test.go index e5e5850f7..304a64b6b 100644 --- a/tequilapi/endpoints/identities_test.go +++ b/tequilapi/endpoints/identities_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/location.go b/tequilapi/endpoints/location.go index 1d46141ab..d65e0cb99 100644 --- a/tequilapi/endpoints/location.go +++ b/tequilapi/endpoints/location.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/location_test.go b/tequilapi/endpoints/location_test.go index ab67b7926..946af2938 100644 --- a/tequilapi/endpoints/location_test.go +++ b/tequilapi/endpoints/location_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/proposals.go b/tequilapi/endpoints/proposals.go index 66114596b..48cdbab5a 100644 --- a/tequilapi/endpoints/proposals.go +++ b/tequilapi/endpoints/proposals.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/proposals_test.go b/tequilapi/endpoints/proposals_test.go index 0b07d9d2d..603951a41 100644 --- a/tequilapi/endpoints/proposals_test.go +++ b/tequilapi/endpoints/proposals_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/stop.go b/tequilapi/endpoints/stop.go index acfeaa99a..85e82fb9b 100644 --- a/tequilapi/endpoints/stop.go +++ b/tequilapi/endpoints/stop.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/endpoints/stop_test.go b/tequilapi/endpoints/stop_test.go index b78d8866f..d39c03e95 100644 --- a/tequilapi/endpoints/stop_test.go +++ b/tequilapi/endpoints/stop_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/http_api_server.go b/tequilapi/http_api_server.go index de655dcf8..4b6d7d79a 100644 --- a/tequilapi/http_api_server.go +++ b/tequilapi/http_api_server.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/http_api_server_test.go b/tequilapi/http_api_server_test.go index fef6ed144..0ec97f8cf 100644 --- a/tequilapi/http_api_server_test.go +++ b/tequilapi/http_api_server_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/http_middlewares.go b/tequilapi/http_middlewares.go index 5ece74632..2842eb274 100644 --- a/tequilapi/http_middlewares.go +++ b/tequilapi/http_middlewares.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/http_middlewares_test.go b/tequilapi/http_middlewares_test.go index f4df0852c..8603d7a75 100644 --- a/tequilapi/http_middlewares_test.go +++ b/tequilapi/http_middlewares_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/http_routes.go b/tequilapi/http_routes.go index b0de3c753..055048c48 100644 --- a/tequilapi/http_routes.go +++ b/tequilapi/http_routes.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/http_routes_test.go b/tequilapi/http_routes_test.go index 337e9adff..97b9e5936 100644 --- a/tequilapi/http_routes_test.go +++ b/tequilapi/http_routes_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/utils/utils.go b/tequilapi/utils/utils.go index 16b6f5be1..d0a8641b9 100644 --- a/tequilapi/utils/utils.go +++ b/tequilapi/utils/utils.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/utils/utils_test.go b/tequilapi/utils/utils_test.go index aee8470e0..cd2099295 100644 --- a/tequilapi/utils/utils_test.go +++ b/tequilapi/utils/utils_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/validation/validation.go b/tequilapi/validation/validation.go index 832f67e68..4b90ea936 100644 --- a/tequilapi/validation/validation.go +++ b/tequilapi/validation/validation.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/tequilapi/validation/validation_test.go b/tequilapi/validation/validation_test.go index ef2b404a8..f7bbd9096 100644 --- a/tequilapi/validation/validation_test.go +++ b/tequilapi/validation/validation_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/utils/cancelable.go b/utils/cancelable.go index 60aedfaae..10f7737ce 100644 --- a/utils/cancelable.go +++ b/utils/cancelable.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/utils/cancelable_test.go b/utils/cancelable_test.go index d99d21c7e..75f366077 100644 --- a/utils/cancelable_test.go +++ b/utils/cancelable_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/utils/once.go b/utils/once.go index 4832310a0..a7cfc20ba 100644 --- a/utils/once.go +++ b/utils/once.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/utils/once_test.go b/utils/once_test.go index d8240fa4c..c3826f416 100644 --- a/utils/once_test.go +++ b/utils/once_test.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/utils/settable_clock.go b/utils/settable_clock.go index 221b16dfb..1af6b3f01 100644 --- a/utils/settable_clock.go +++ b/utils/settable_clock.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 diff --git a/version/version.go b/version/version.go index 073f5793d..d1c4e464b 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 The Mysterium Network Authors + * Copyright (C) 2018 The "MysteriumNetwork/node" Authors. * * 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 From 6bf8eac277e9bed4b381590f91f6952798973363 Mon Sep 17 00:00:00 2001 From: Donatas Kucinskas Date: Fri, 18 May 2018 09:24:20 +0300 Subject: [PATCH 4/4] Update LICENSE copyright year to unify with headers --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 24652cb03..37e37467e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - Copyright (C) 2017 The "MysteriumNetwork/node" Authors. + Copyright (C) 2018 The "MysteriumNetwork/node" Authors. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.