linux ngx listen的解析
listen的解析:
ngx_http_core_listen方法:
- 調用ngx_parse_url解析url。
- 初始化ngx_http_listen_opt_t結構lsopt
- 調用ngx_sock_ntop初始化lsopt.addr為點分十進制IP。
- 處理listen的其他配置參數,如:backlog= ,rcvbuf=, sndbuf=, ssl, so_keepalive= 等等。
- 調用ngx_http_add_listen添加到隊列。
?
ngx_http_add_listen方法在ngx_http.c#1143
- 如果ports為NULL(不為空,就是說已經解析了一個listern),則為ngx_http_core_module的ngx_http_core_main_conf_t.ports分配ngx_http_conf_port_t
- 獲取listern 的端口,賦值給p。
-? 查找prots中family和port相同的,如果找到,說明兩個listern監聽相同的端口,是相同的協議,就不需要再分配 ngx_http_conf_port_t了。調用ngx_http_add_addresses添加到相同port的port的addr數組。
-? 沒找到(說明還沒有解析監聽過該端口),調用ngx_http_add_address把port賦值,調用ngx_array_push添加到ports數組。
?
?
ngx_http_add_addresses函數:
- 查找port->addrs數組是否已經添加了該IP。若是,調用ngx_http_add_server把對應的ngx_http_core_srv_conf_t配置添加到ngx_http_conf_addr_t的servers數組中。
- 若沒找到該IP,調用ngx_http_add_address把IP初始化到ngx_http_conf_addr_t結構,添加到port的addrs數組中。
?
總結:監聽的端口地址信息以數組的形式村到了ngx_http_core_module模塊的ngx_http_core_main_conf_t結構變量中。
總結
以上是生活随笔為你收集整理的linux ngx listen的解析的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: PCRE接口pcre_fullinfo混
- 下一篇: nginx源码分析(5)——监听sock