Add sign certificate response handling to clientsim
This commit is contained in:
parent
e4c4d0b9eb
commit
db0aacb2da
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue