]> Cypherpunks.ru repositories - goircd.git/blobdiff - client.go
add service && debian package
[goircd.git] / client.go
index e90d51220fee0eca4ab9d3d64ae0eef07a730ccb..211f399969fa008982578daad5664beb8d38903c 100644 (file)
--- a/client.go
+++ b/client.go
@@ -1,6 +1,6 @@
 /*
 goircd -- minimalistic simple Internet Relay Chat (IRC) server
-Copyright (C) 2014-2016 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2014-2017 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
@@ -51,7 +51,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 +62,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()
 }