gcf               177 http/modules/ngx_http_geoip_module.c     ngx_http_geoip_conf_t  *gcf;
gcf               179 http/modules/ngx_http_geoip_module.c     gcf = ngx_http_get_module_main_conf(r, ngx_http_geoip_module);
gcf               181 http/modules/ngx_http_geoip_module.c     if (gcf->country == NULL) {
gcf               192 http/modules/ngx_http_geoip_module.c     val = handler(gcf->country, addr);
gcf               369 http/modules/ngx_http_geoip_module.c     ngx_http_geoip_conf_t  *gcf;
gcf               371 http/modules/ngx_http_geoip_module.c     gcf = ngx_http_get_module_main_conf(r, ngx_http_geoip_module);
gcf               373 http/modules/ngx_http_geoip_module.c     if (gcf->city && r->connection->sockaddr->sa_family == AF_INET) {
gcf               378 http/modules/ngx_http_geoip_module.c         return GeoIP_record_by_ipnum(gcf->city, addr);
gcf               430 http/modules/ngx_http_geoip_module.c     ngx_http_geoip_conf_t  *gcf = conf;
gcf               434 http/modules/ngx_http_geoip_module.c     if (gcf->country) {
gcf               440 http/modules/ngx_http_geoip_module.c     gcf->country = GeoIP_open((char *) value[1].data, GEOIP_MEMORY_CACHE);
gcf               442 http/modules/ngx_http_geoip_module.c     if (gcf->country == NULL) {
gcf               451 http/modules/ngx_http_geoip_module.c             GeoIP_set_charset (gcf->country, GEOIP_CHARSET_UTF8);
gcf               460 http/modules/ngx_http_geoip_module.c     switch (gcf->country->databaseType) {
gcf               471 http/modules/ngx_http_geoip_module.c                            &value[1], gcf->country->databaseType);
gcf               480 http/modules/ngx_http_geoip_module.c     ngx_http_geoip_conf_t  *gcf = conf;
gcf               484 http/modules/ngx_http_geoip_module.c     if (gcf->city) {
gcf               490 http/modules/ngx_http_geoip_module.c     gcf->city = GeoIP_open((char *) value[1].data, GEOIP_MEMORY_CACHE);
gcf               492 http/modules/ngx_http_geoip_module.c     if (gcf->city == NULL) {
gcf               501 http/modules/ngx_http_geoip_module.c             GeoIP_set_charset (gcf->city, GEOIP_CHARSET_UTF8);
gcf               510 http/modules/ngx_http_geoip_module.c     switch (gcf->city->databaseType) {
gcf               520 http/modules/ngx_http_geoip_module.c                            &value[1], gcf->city->databaseType);
gcf               529 http/modules/ngx_http_geoip_module.c     ngx_http_geoip_conf_t  *gcf = data;
gcf               531 http/modules/ngx_http_geoip_module.c     if (gcf->country) {
gcf               532 http/modules/ngx_http_geoip_module.c         GeoIP_delete(gcf->country);
gcf               535 http/modules/ngx_http_geoip_module.c     if (gcf->city) {
gcf               536 http/modules/ngx_http_geoip_module.c         GeoIP_delete(gcf->city);