mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
log requests in the interop server
This commit is contained in:
parent
4ae1a13503
commit
80e39f5ed3
1 changed files with 4 additions and 1 deletions
|
@ -95,7 +95,7 @@ func (s *Server) handleConn(sess quic.Session) {
|
|||
}
|
||||
go func() {
|
||||
if err := s.handleStream(str); err != nil {
|
||||
log.Printf("Handling stream failed: %s", err.Error())
|
||||
log.Printf("Handling stream failed: %s\n", err.Error())
|
||||
}
|
||||
}()
|
||||
}
|
||||
|
@ -109,6 +109,9 @@ func (s *Server) handleStream(str quic.Stream) error {
|
|||
request := string(reqBytes)
|
||||
request = strings.TrimRight(request, "\r\n")
|
||||
request = strings.TrimRight(request, " ")
|
||||
|
||||
log.Printf("Received request: %s\n", request)
|
||||
|
||||
if request[:5] != "GET /" {
|
||||
str.CancelWrite(42)
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue