1
0
Fork 0
mirror of https://git.sr.ht/~adnano/go-gemini synced 2024-06-02 06:26:06 +02:00
go-gemini/gemini.go

27 lines
799 B
Go
Raw Normal View History

2020-10-24 21:15:32 +02:00
package gemini
2020-09-26 01:09:49 +02:00
2020-09-26 22:52:14 +02:00
import (
2020-10-14 02:10:04 +02:00
"errors"
2020-09-26 22:52:14 +02:00
)
2020-10-28 00:21:33 +01:00
var crlf = []byte("\r\n")
2020-09-26 01:09:49 +02:00
2020-10-14 02:10:04 +02:00
// Errors.
var (
ErrInvalidRequest = errors.New("gemini: invalid request")
2020-11-05 21:27:12 +01:00
ErrInvalidResponse = errors.New("gemini: invalid response")
2021-02-21 15:27:12 +01:00
ErrCertificateExpired = errors.New("gemini: certificate expired")
// ErrBodyNotAllowed is returned by ResponseWriter.Write calls
// when the response status code does not permit a body.
ErrBodyNotAllowed = errors.New("gemini: response status code does not allow body")
2021-02-24 03:36:29 +01:00
// ErrHijacked is returned by ResponseWriter.Write calls when
// the underlying connection has been hijacked using the
// Hijacker interface. A zero-byte write on a hijacked
// connection will return ErrHijacked without any other side
// effects.
ErrHijacked = errors.New("gemini: connection has been hijacked")
2020-10-14 02:10:04 +02:00
)