I came upon a struct (called ngx_http_variable_value_t) in my GDB (debugger) session and I would like to print what fields it has in the console.
ngx_http_variable_value_t
Is tha
If you have debugging symbols built in, you should just be able to print the value: print variable or print *variable if it's a pointer to a struct.
print variable
print *variable