]> Cypherpunks.ru repositories - goircd.git/blobdiff - client.go
Forbid any later GNU GPL versions autousage
[goircd.git] / client.go
index c2923d0d4f3404e0a42b35353607ab26fd702ae0..2bdbbccddfbb9fefc31f3b57b527114fd7aa325a 100644 (file)
--- a/client.go
+++ b/client.go
@@ -1,11 +1,10 @@
 /*
 goircd -- minimalistic simple Internet Relay Chat (IRC) server
-Copyright (C) 2014-2015 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2014-2018 Sergey Matveev <stargrave@stargrave.org>
 
 This 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.
+the Free Software Foundation, version 3 of the License.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -51,7 +50,7 @@ type Client struct {
        sync.Mutex
 }
 
-func (c Client) Host() string {
+func (c *Client) Host() string {
        addr := c.conn.RemoteAddr().String()
        if host, _, err := net.SplitHostPort(addr); err == nil {
                addr = host
@@ -62,7 +61,7 @@ func (c Client) Host() string {
        return addr
 }
 
-func (c Client) String() string {
+func (c *Client) String() string {
        return *c.nickname + "!" + *c.username + "@" + c.Host()
 }