mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add integration test that we return timeout errors after an idle timeout
This commit is contained in:
parent
c03a8aaa97
commit
9ed1a2e3e1
2 changed files with 97 additions and 0 deletions
|
@ -2,6 +2,7 @@ package qerr
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"net"
|
||||
)
|
||||
|
||||
// ErrorCode can be used as a normal error without reason.
|
||||
|
@ -17,6 +18,8 @@ type QuicError struct {
|
|||
ErrorMessage string
|
||||
}
|
||||
|
||||
var _ net.Error = &QuicError{}
|
||||
|
||||
// Error creates a new QuicError instance
|
||||
func Error(errorCode ErrorCode, errorMessage string) *QuicError {
|
||||
return &QuicError{
|
||||
|
@ -29,6 +32,11 @@ func (e *QuicError) Error() string {
|
|||
return fmt.Sprintf("%s: %s", e.ErrorCode.String(), e.ErrorMessage)
|
||||
}
|
||||
|
||||
// Temporary says if the error is temporary.
|
||||
func (e *QuicError) Temporary() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// Timeout says if this error is a timeout.
|
||||
func (e *QuicError) Timeout() bool {
|
||||
switch e.ErrorCode {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue