[server] explicit errors

This commit is contained in:
xdrm-brackets 2018-04-24 23:42:21 +02:00
parent 5bb3d0275a
commit 39c9d8169f
1 changed files with 4 additions and 4 deletions

View File

@ -84,14 +84,14 @@ func (s *T) HandleRequest(req io.Reader, res io.Writer) error {
/* (1) Read x1 */ /* (1) Read x1 */
x1 := make([]byte, scha.HSIZE); x1 := make([]byte, scha.HSIZE);
read, err := req.Read(x1); read, err := req.Read(x1);
if err != nil { return err } if err != nil { return fmt.Errorf("Reading x1 : %s", err) }
if uint16(read) != scha.HSIZE { return errors.New("Cannot read enough bytes") } if uint16(read) != scha.HSIZE { return fmt.Errorf("Cannot read x1 : %d / %d bytes available", read, scha.HSIZE) }
/* (2) Read x2 */ /* (2) Read x2 */
x2 := make([]byte, scha.HSIZE); x2 := make([]byte, scha.HSIZE);
read, err = req.Read(x2); read, err = req.Read(x2);
if err != nil { return err } if err != nil { return fmt.Errorf("Reading x2 : %s", err) }
if uint16(read) != scha.HSIZE { return errors.New("Cannot read enough bytes") } if uint16(read) != scha.HSIZE { return fmt.Errorf("Cannot read x2 : %d / %d bytes available", read, scha.HSIZE) }
/* (3) Manage request */ /* (3) Manage request */
errCode, err := s.manageRequest(x1, x2) errCode, err := s.manageRequest(x1, x2)