Rename RPC request wrapper for CountFQDNSets

This commit is contained in:
Roland Shoemaker 2016-02-26 15:43:27 -08:00
parent bee236af3a
commit cd0132d0a1
1 changed files with 3 additions and 3 deletions

View File

@ -170,7 +170,7 @@ type revokeAuthsRequest struct {
Ident core.AcmeIdentifier Ident core.AcmeIdentifier
} }
type countValidFQDNsRequest struct { type countFQDNsRequest struct {
Window time.Duration Window time.Duration
Names []string Names []string
} }
@ -1118,7 +1118,7 @@ func NewStorageAuthorityServer(rpc Server, impl core.StorageAuthority) error {
}) })
rpc.Handle(MethodCountFQDNSets, func(req []byte) (response []byte, err error) { rpc.Handle(MethodCountFQDNSets, func(req []byte) (response []byte, err error) {
var r countValidFQDNsRequest var r countFQDNsRequest
err = json.Unmarshal(req, &r) err = json.Unmarshal(req, &r)
if err != nil { if err != nil {
// AUDIT[ Error Conditions ] 9cc4d537-8534-4970-8665-4b382abe82f3 // AUDIT[ Error Conditions ] 9cc4d537-8534-4970-8665-4b382abe82f3
@ -1518,7 +1518,7 @@ func (cac StorageAuthorityClient) AddSCTReceipt(sct core.SignedCertificateTimest
// CountFQDNSets reutrns the number of currently valid sets with hash |setHash| // CountFQDNSets reutrns the number of currently valid sets with hash |setHash|
func (cac StorageAuthorityClient) CountFQDNSets(window time.Duration, names []string) (int64, error) { func (cac StorageAuthorityClient) CountFQDNSets(window time.Duration, names []string) (int64, error) {
data, err := json.Marshal(countValidFQDNsRequest{window, names}) data, err := json.Marshal(countFQDNsRequest{window, names})
if err != nil { if err != nil {
return 0, err return 0, err
} }