小编Eva*_*L00的帖子

what does "elts" stands for in nginx source code

I'm reading nginx source code, and I found elts is in many data structure declaration, such as:

struct ngx_array_s {
void *elts;
ngx_uint_t nelts;
/* some members are omited */
}
Run Code Online (Sandbox Code Playgroud)

From the code, I know elts is the address of the array that is used to store elements. But I wonder what elts stands for. After googling a bit. and feel like maybe it stands for element start (reference). Is it right, or what is the exact …

nginx

6
推荐指数
1
解决办法
672
查看次数

标签 统计

nginx ×1