remove unused StreamCallback

This commit is contained in:
Marten Seemann 2017-02-17 16:01:30 +07:00
parent 5029ab0934
commit 824f122a79
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
7 changed files with 13 additions and 43 deletions

View file

@ -44,7 +44,7 @@ func (s *mockSession) RemoteAddr() net.Addr {
var _ Session = &mockSession{}
func newMockSession(conn connection, v protocol.VersionNumber, connectionID protocol.ConnectionID, sCfg *handshake.ServerConfig, streamCallback StreamCallback, closeCallback closeCallback) (packetHandler, error) {
func newMockSession(conn connection, v protocol.VersionNumber, connectionID protocol.ConnectionID, sCfg *handshake.ServerConfig, closeCallback closeCallback) (packetHandler, error) {
return &mockSession{
connectionID: connectionID,
}, nil