Add sign certificate response handling to clientsim

This commit is contained in:
Jan Dittberner 2022-12-22 12:23:31 +01:00
parent e4c4d0b9eb
commit db0aacb2da

View file

@ -322,6 +322,13 @@ func (c *ClientHandler) ResponseData(ctx context.Context, in <-chan []byte, resp
return fmt.Errorf("could not unmarshal fetch CRL response data: %w", err)
}
response.Response = &resp
case messages.RespSignCertificate:
var resp messages.SignCertificateResponse
if err := msgpack.Unmarshal(frame, &resp); err != nil {
return fmt.Errorf("could not unmarshal sign certificate response data: %w", err)
}
response.Response = &resp
default:
return fmt.Errorf("unhandled response code %s", response.Announce.Code)