ahcf               73 mail/ngx_mail_auth_http_module.c     ngx_pool_t *pool, ngx_mail_auth_http_conf_t *ahcf);
ahcf              157 mail/ngx_mail_auth_http_module.c     ngx_mail_auth_http_conf_t  *ahcf;
ahcf              176 mail/ngx_mail_auth_http_module.c     ahcf = ngx_mail_get_module_srv_conf(s, ngx_mail_auth_http_module);
ahcf              178 mail/ngx_mail_auth_http_module.c     ctx->request = ngx_mail_auth_http_create_request(s, pool, ahcf);
ahcf              187 mail/ngx_mail_auth_http_module.c     ctx->peer.sockaddr = ahcf->peer->sockaddr;
ahcf              188 mail/ngx_mail_auth_http_module.c     ctx->peer.socklen = ahcf->peer->socklen;
ahcf              189 mail/ngx_mail_auth_http_module.c     ctx->peer.name = &ahcf->peer->name;
ahcf              215 mail/ngx_mail_auth_http_module.c     ngx_add_timer(ctx->peer.connection->read, ahcf->timeout);
ahcf              216 mail/ngx_mail_auth_http_module.c     ngx_add_timer(ctx->peer.connection->write, ahcf->timeout);
ahcf              232 mail/ngx_mail_auth_http_module.c     ngx_mail_auth_http_conf_t  *ahcf;
ahcf              283 mail/ngx_mail_auth_http_module.c         ahcf = ngx_mail_get_module_srv_conf(s, ngx_mail_auth_http_module);
ahcf              284 mail/ngx_mail_auth_http_module.c         ngx_add_timer(wev, ahcf->timeout);
ahcf             1130 mail/ngx_mail_auth_http_module.c     ngx_mail_auth_http_conf_t *ahcf)
ahcf             1147 mail/ngx_mail_auth_http_module.c     len = sizeof("GET ") - 1 + ahcf->uri.len + sizeof(" HTTP/1.0" CRLF) - 1
ahcf             1148 mail/ngx_mail_auth_http_module.c           + sizeof("Host: ") - 1 + ahcf->host_header.len + sizeof(CRLF) - 1
ahcf             1165 mail/ngx_mail_auth_http_module.c           + ahcf->header.len
ahcf             1174 mail/ngx_mail_auth_http_module.c     b->last = ngx_copy(b->last, ahcf->uri.data, ahcf->uri.len);
ahcf             1179 mail/ngx_mail_auth_http_module.c     b->last = ngx_copy(b->last, ahcf->host_header.data,
ahcf             1180 mail/ngx_mail_auth_http_module.c                          ahcf->host_header.len);
ahcf             1247 mail/ngx_mail_auth_http_module.c     if (ahcf->header.len) {
ahcf             1248 mail/ngx_mail_auth_http_module.c         b->last = ngx_copy(b->last, ahcf->header.data, ahcf->header.len);
ahcf             1300 mail/ngx_mail_auth_http_module.c     ngx_mail_auth_http_conf_t  *ahcf;
ahcf             1302 mail/ngx_mail_auth_http_module.c     ahcf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_auth_http_conf_t));
ahcf             1303 mail/ngx_mail_auth_http_module.c     if (ahcf == NULL) {
ahcf             1307 mail/ngx_mail_auth_http_module.c     ahcf->timeout = NGX_CONF_UNSET_MSEC;
ahcf             1309 mail/ngx_mail_auth_http_module.c     ahcf->file = cf->conf_file->file.name.data;
ahcf             1310 mail/ngx_mail_auth_http_module.c     ahcf->line = cf->conf_file->line;
ahcf             1312 mail/ngx_mail_auth_http_module.c     return ahcf;
ahcf             1378 mail/ngx_mail_auth_http_module.c     ngx_mail_auth_http_conf_t *ahcf = conf;
ahcf             1406 mail/ngx_mail_auth_http_module.c     ahcf->peer = u.addrs;
ahcf             1409 mail/ngx_mail_auth_http_module.c         ahcf->host_header = u.host;
ahcf             1412 mail/ngx_mail_auth_http_module.c         ngx_str_set(&ahcf->host_header, "localhost");
ahcf             1415 mail/ngx_mail_auth_http_module.c     ahcf->uri = u.uri;
ahcf             1417 mail/ngx_mail_auth_http_module.c     if (ahcf->uri.len == 0) {
ahcf             1418 mail/ngx_mail_auth_http_module.c         ngx_str_set(&ahcf->uri, "/");
ahcf             1428 mail/ngx_mail_auth_http_module.c     ngx_mail_auth_http_conf_t *ahcf = conf;
ahcf             1433 mail/ngx_mail_auth_http_module.c     if (ahcf->headers == NULL) {
ahcf             1434 mail/ngx_mail_auth_http_module.c         ahcf->headers = ngx_array_create(cf->pool, 1, sizeof(ngx_table_elt_t));
ahcf             1435 mail/ngx_mail_auth_http_module.c         if (ahcf->headers == NULL) {
ahcf             1440 mail/ngx_mail_auth_http_module.c     header = ngx_array_push(ahcf->headers);