|
@@ -7,9 +7,9 @@ import (
|
|
|
|
|
|
var (
|
|
|
errInvalidExtClientPubKey = errors.New("incorrect ext client public key")
|
|
|
- errInvalidExtClientID = errors.New("ext client ID must be alphanumderic and/or dashes and less that 15 chars")
|
|
|
- errInvalidExtClientExtraIP = errors.New("ext client extra ip must be a valid cidr")
|
|
|
- errInvalidExtClientDNS = errors.New("ext client dns must be a valid ip address")
|
|
|
+ errInvalidExtClientID = errors.New("client ID must be alphanumderic and/or dashes and less that 15 chars")
|
|
|
+ errInvalidExtClientExtraIP = errors.New("client extra ip must be a valid cidr")
|
|
|
+ errInvalidExtClientDNS = errors.New("client dns must be a valid ip address")
|
|
|
errDuplicateExtClientName = errors.New("duplicate client name")
|
|
|
)
|
|
|
|