Merge branch 'master' of https://github.com/phin1x/go-ipp
This commit is contained in:
commit
33c6ef07ac
|
@ -1,6 +1,6 @@
|
||||||
# go-ipp
|
# go-ipp
|
||||||
|
|
||||||
[![Version](https://img.shields.io/github/release-pre/phin1x/go-ipp.svg)](https://github.com/phin1x/go-ipp/releases/tag/v1.1.0)
|
[![Version](https://img.shields.io/github/release-pre/phin1x/go-ipp.svg)](https://github.com/phin1x/go-ipp/releases/tag/v1.3.0)
|
||||||
[![Licence](https://img.shields.io/github/license/phin1x/go-ipp.svg)](https://github.com/phin1x/go-ipp/blob/master/LICENSE)
|
[![Licence](https://img.shields.io/github/license/phin1x/go-ipp.svg)](https://github.com/phin1x/go-ipp/blob/master/LICENSE)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@ func (d *RequestDecoder) Decode(data io.Writer) (*Request, error) {
|
||||||
// when we read from a stream, we may get an EOF if we want to read the end tag
|
// when we read from a stream, we may get an EOF if we want to read the end tag
|
||||||
// all data should be read and we can ignore the error
|
// all data should be read and we can ignore the error
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
break
|
return req, nil
|
||||||
}
|
}
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -223,7 +223,7 @@ func (d *ResponseDecoder) Decode(data io.Writer) (*Response, error) {
|
||||||
// when we read from a stream, we may get an EOF if we want to read the end tag
|
// when we read from a stream, we may get an EOF if we want to read the end tag
|
||||||
// all data should be read and we can ignore the error
|
// all data should be read and we can ignore the error
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
break
|
return resp, nil
|
||||||
}
|
}
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue