Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
9
plugins/parsers/errors.go
Normal file
9
plugins/parsers/errors.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
package parsers
|
||||
|
||||
import "errors"
|
||||
|
||||
// ErrEOF is similar to io.EOF but is a separate type to make sure we
|
||||
// have checked the parsers using it to have the same meaning (i.e.
|
||||
// it needs more data to complete parsing) and a way to detect partial
|
||||
// data.
|
||||
var ErrEOF = errors.New("not enough data")
|
Loading…
Add table
Add a link
Reference in a new issue