* or tcpmsg (TCP case).
*/
void
-ns__client_request(isc_nmhandle_t *handle, isc_result_t eresult,
- isc_region_t *region, void *arg) {
+ns_client_request(isc_nmhandle_t *handle, isc_result_t eresult,
+ isc_region_t *region, void *arg) {
ns_client_t *client = NULL;
isc_result_t result;
isc_result_t sigresult = ISC_R_SUCCESS;
*/
void
-ns__client_request(isc_nmhandle_t *handle, isc_result_t eresult,
- isc_region_t *region, void *arg);
+ns_client_request(isc_nmhandle_t *handle, isc_result_t eresult,
+ isc_region_t *region, void *arg);
/*%<
* Handle client requests.
/* Reserve space for an ns_client_t with the netmgr handle */
result = isc_nm_listenudp(ifp->mgr->nm, ISC_NM_LISTEN_ALL, &ifp->addr,
- ns__client_request, ifp,
+ ns_client_request, ifp,
&ifp->udplistensocket);
return (result);
}
isc_result_t result;
result = isc_nm_listenstreamdns(
- ifp->mgr->nm, ISC_NM_LISTEN_ALL, &ifp->addr, ns__client_request,
+ ifp->mgr->nm, ISC_NM_LISTEN_ALL, &ifp->addr, ns_client_request,
ifp, ns__client_tcpconn, ifp, ifp->mgr->backlog,
&ifp->mgr->sctx->tcpquota, NULL, &ifp->tcplistensocket);
if (result != ISC_R_SUCCESS) {
isc_result_t result;
result = isc_nm_listenstreamdns(
- ifp->mgr->nm, ISC_NM_LISTEN_ALL, &ifp->addr, ns__client_request,
+ ifp->mgr->nm, ISC_NM_LISTEN_ALL, &ifp->addr, ns_client_request,
ifp, ns__client_tcpconn, ifp, ifp->mgr->backlog,
&ifp->mgr->sctx->tcpquota, sslctx, &ifp->tcplistensocket);
for (size_t i = 0; i < neps; i++) {
result = isc_nm_http_endpoints_add(epset, eps[i],
- ns__client_request, ifp);
+ ns_client_request, ifp);
if (result != ISC_R_SUCCESS) {
break;
}
/*
* Allow recursion for the client. As NS_CLIENTATTR_RA normally gets
- * set in ns__client_request(), i.e. earlier than the unit tests hook
+ * set in ns_client_request(), i.e. earlier than the unit tests hook
* into the call chain, just set it manually.
*/
client->attributes |= NS_CLIENTATTR_RA;