]> Cypherpunks.ru repositories - govpn.git/blobdiff - src/cypherpunks.ru/govpn/common.go
Split too long lines
[govpn.git] / src / cypherpunks.ru / govpn / common.go
index ca629c06317ec50f4c5f3608e18846bdd29459a4..003792e7d7d32a8ed5d58a678bd88af4346b7cae 100644 (file)
@@ -89,7 +89,11 @@ func (p Protocol) MarshalJSON() ([]byte, error) {
 func (p *Protocol) UnmarshalJSON(encoded []byte) error {
        var str string
        if err := json.Unmarshal(encoded, &str); err != nil {
-               return errors.Wrapf(err, "Can't unmarshall to string %q", hex.EncodeToString(encoded))
+               return errors.Wrapf(
+                       err,
+                       "Can't unmarshall to string %q",
+                       hex.EncodeToString(encoded),
+               )
        }
        proto, err := NewProtocolFromString(str)
        if err != nil {
@@ -146,12 +150,12 @@ func SliceZero(data []byte) {
        }
 }
 
-// VersionGet return version of GoVPN
+// VersionGet returns version of GoVPN
 func VersionGet() string {
        return "GoVPN version " + Version + " built with " + runtime.Version()
 }
 
-// CatchSignalShutdown return a channel.
+// CatchSignalShutdown returns a channel.
 // that channel will get a SIG_INT or SIG_KILL signal is received
 // this is intended to be used to stop a client/server
 func CatchSignalShutdown() chan interface{} {