美文网首页
nginx ip2location 模块支持传入ip参数的功能

nginx ip2location 模块支持传入ip参数的功能

作者: vincent_huang | 来源:发表于2018-02-07 16:06 被阅读46次

实现在函数:

static ngx_http_ip2location_ctx_t * ngx_http_ip2location_create_ctx(ngx_http_request_t *r):

声明:

u_char iparam[NGX_INET6_ADDRSTRLEN + 1];

ngx_http_variable_value_t* val;

ngx_str_t name = ngx_string("arg_ip");//uri里的ip参数

iparam[0]='\0';//初始化

val = ngx_http_get_variable(r, &name, 0); //获取ip值                                                                                                                                   

 if( val && !val->not_found && val->valid){

     memcpy(iparam, val->data, val->len);

     iparam[val->len]='\0';

   }

    if(iparam[0]!='\0'){

       ctx->record = IP2Location_get_all(imcf->database, (char *)iparam);

   }else{

       ctx->record = IP2Location_get_all(imcf->database, (char *)address);

     }

相关文章

网友评论

      本文标题:nginx ip2location 模块支持传入ip参数的功能

      本文链接:https://www.haomeiwen.com/subject/pncazxtx.html