From d02883ca38b62cda9bb4d0f83b4b932693c996c6 Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Fri, 20 Jul 2012 16:43:42 -0700 Subject: [PATCH] add field for certficate chain --- server-ca/chocolate_protocol.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-ca/chocolate_protocol.proto b/server-ca/chocolate_protocol.proto index 2bc75bbd2..8c122745c 100644 --- a/server-ca/chocolate_protocol.proto +++ b/server-ca/chocolate_protocol.proto @@ -31,7 +31,6 @@ message chocolatemessage { message Failure { required FailureReason cause = 1; optional string URI = 2; /* for more human-readable information */ -// optional string affectedrequest = 3; /* nonce of the SigningRequest that provoked this failure */ } message Proceed { @@ -69,6 +68,7 @@ message chocolatemessage { message Success { required string certificate = 1; + optional string chain 2; }