This commit is contained in:
crusader 2017-11-15 13:20:59 +09:00
parent 147477117c
commit 36cab4575a

View File

@ -3,7 +3,6 @@ package server
import ( import (
"errors" "errors"
"fmt" "fmt"
"log"
"net" "net"
"git.loafle.net/commons_go/logging" "git.loafle.net/commons_go/logging"
@ -41,7 +40,6 @@ func (sh *ServerHandlers) OnConnect(conn net.Conn) (net.Conn, error) {
} }
func (sh *ServerHandlers) Handle(conn net.Conn, stopChan <-chan struct{}, doneChan chan<- struct{}) { func (sh *ServerHandlers) Handle(conn net.Conn, stopChan <-chan struct{}, doneChan chan<- struct{}) {
log.Printf("Server.Handle")
} }
func (sh *ServerHandlers) OnError(status int, reason error) { func (sh *ServerHandlers) OnError(status int, reason error) {