Update deps

This commit is contained in:
Frank Denis 2018-05-19 01:50:26 +02:00
parent 33537be040
commit eff3272b9f
28 changed files with 5026 additions and 296 deletions

View file

@ -98,7 +98,7 @@ func (h *Header) Marshal() ([]byte, error) {
return b, nil
}
// Parse parses b as an IPv4 header and sotres the result in h.
// Parse parses b as an IPv4 header and stores the result in h.
func (h *Header) Parse(b []byte) error {
if h == nil || len(b) < HeaderLen {
return errHeaderTooShort