mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
455 B
24 lines
455 B
package ber |
|
|
|
import "io" |
|
|
|
func readByte(reader io.Reader) (byte, error) { |
|
bytes := make([]byte, 1, 1) |
|
_, err := io.ReadFull(reader, bytes) |
|
if err != nil { |
|
if err == io.EOF { |
|
return 0, io.ErrUnexpectedEOF |
|
} |
|
return 0, err |
|
} |
|
return bytes[0], nil |
|
} |
|
|
|
func isEOCPacket(p *Packet) bool { |
|
return p != nil && |
|
p.Tag == TagEOC && |
|
p.ClassType == ClassUniversal && |
|
p.TagType == TypePrimitive && |
|
len(p.ByteValue) == 0 && |
|
len(p.Children) == 0 |
|
}
|
|
|