Home | History | Annotate | Download | only in server

Lines Matching refs:mClient

57         : mClient(c),
131 mClient->sendBinaryMsg(ResponseCode::DnsProxyOperationFailed, &rv, sizeof(rv));
133 bool success = !mClient->sendCode(ResponseCode::DnsProxyQueryResult);
136 success = sendLenAndData(mClient, sizeof(struct addrinfo), ai)
137 && sendLenAndData(mClient, ai->ai_addrlen, ai->ai_addr)
138 && sendLenAndData(mClient,
143 success = success && sendLenAndData(mClient, 0, "");
151 mClient->decRef();
280 : mClient(c),
324 success = mClient->sendCode(ResponseCode::DnsProxyQueryResult) == 0;
325 success &= sendhostent(mClient, hp);
327 success = mClient->sendBinaryMsg(ResponseCode::DnsProxyOperationFailed, NULL, 0) == 0;
333 mClient->decRef();
396 : mClient(c),
441 success = mClient->sendCode(ResponseCode::DnsProxyQueryResult) == 0;
442 success &= sendhostent(mClient, hp);
444 success = mClient->sendBinaryMsg(ResponseCode::DnsProxyOperationFailed, NULL, 0) == 0;
450 mClient->decRef();