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

29 lines
947 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 (
2020-11-05 21:27:12 +01:00
ErrInvalidURL = errors.New("gemini: invalid URL")
ErrInvalidRequest = errors.New("gemini: invalid request")
2020-11-05 21:27:12 +01:00
ErrInvalidResponse = errors.New("gemini: invalid response")
// 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")
// ErrServerClosed is returned by the Server's Serve and ListenAndServe
// methods after a call to Shutdown or Close.
ErrServerClosed = errors.New("gemini: server closed")
// ErrAbortHandler is a sentinel panic value to abort a handler.
// While any panic from ServeGemini aborts the response to the client,
// panicking with ErrAbortHandler also suppresses logging of a stack
// trace to the server's error log.
ErrAbortHandler = errors.New("net/http: abort Handler")
2020-10-14 02:10:04 +02:00
)