github.com/GeniusesGroup/libgo@v0.0.0-20220929090155-5ff932cb408e/protocol/networking-common_handler.go (about) 1 /* For license and copyright information please see the LEGAL file in the code repository */ 2 3 package protocol 4 5 // NetworkCommonHandler usually use to indicate layer 5, 6, 7 handlers 6 type NetworkCommonHandler interface { 7 ProtocolID() MediaTypeID 8 // HandleIncomeRequest must check stream status 9 HandleIncomeRequest(st Stream) (err Error) 10 11 Stringer // e.g. "tls", ... 12 }