This commit is contained in:
Alain Jobart 2015-08-07 08:50:50 -07:00
Родитель dddbdbfb5f
Коммит 07a81e272c
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,11 @@ func newCallerIDClient(fallback vtgateservice.VTGateService) *callerIDClient {
}
}
// checkCallerID will see if this module is handling the request,
// and if it is, check the callerID from the context.
// Returns false if the query is not for this module.
// Returns true and the the error to return with the call
// if this module is handling the request.
func (c *callerIDClient) checkCallerID(ctx context.Context, received string) (bool, error) {
if !strings.HasPrefix(received, callerIDPrefix) {
return false, nil