Decimal sentinel

This commit is contained in:
Roland Shoemaker 2015-11-23 10:55:59 -08:00
parent 15ae242cfe
commit 680c21c1b1
1 changed files with 3 additions and 2 deletions

View File

@ -42,8 +42,9 @@ const (
// StatusRateLimited is not in net/http
StatusRateLimited = 429
// statusBadNonce is used to force sendError to send the proper error type
statusBadNonce = 0400
// statusBadNonce is used as a sentinel value to force sendError to send
// the proper error type
statusBadNonce = 1400
)
// WebFrontEndImpl provides all the logic for Boulder's web-facing interface,