@@ -74,7 +74,8 @@ ngx_http_lua_balancer_ssl_sess_store(ngx_peer_connection_t *pc, void *data)
7474 ngx_http_lua_srv_conf_t * lscf ;
7575 ngx_http_lua_balancer_peer_data_t * bp = data ;
7676
77- ngx_log_debug0 (NGX_LOG_DEBUG_HTTP , pc -> log , 0 , "balancer ssl session store" );
77+ ngx_log_debug0 (NGX_LOG_DEBUG_HTTP , pc -> log , 0 ,
78+ "balancer ssl session store" );
7879
7980 lscf = bp -> conf ;
8081
@@ -129,8 +130,8 @@ ngx_http_lua_balancer_ssl_sess_store(ngx_peer_connection_t *pc, void *data)
129130
130131
131132char *
132- ngx_http_lua_balancer_ssl_sess_store_by_lua_block (ngx_conf_t * cf , ngx_command_t * cmd ,
133- void * conf )
133+ ngx_http_lua_balancer_ssl_sess_store_by_lua_block (ngx_conf_t * cf ,
134+ ngx_command_t * cmd , void * conf )
134135{
135136 char * rv ;
136137 ngx_conf_t save ;
@@ -169,7 +170,8 @@ ngx_http_lua_balancer_ssl_sess_store_by_lua(ngx_conf_t *cf, ngx_command_t *cmd,
169170
170171 value = cf -> args -> elts ;
171172
172- lscf -> balancer .ssl_sess_store_handler = (ngx_http_lua_srv_conf_handler_pt ) cmd -> post ;
173+ lscf -> balancer .ssl_sess_store_handler =
174+ (ngx_http_lua_srv_conf_handler_pt ) cmd -> post ;
173175
174176 if (cmd -> post == ngx_http_lua_balancer_ssl_sess_store_handler_file ) {
175177 /* Lua code in an external file */
@@ -216,7 +218,8 @@ ngx_http_lua_balancer_ssl_sess_store_by_lua(ngx_conf_t *cf, ngx_command_t *cmd,
216218
217219
218220static ngx_int_t
219- ngx_http_lua_balancer_ssl_sess_store_by_chunk (lua_State * L , ngx_http_request_t * r )
221+ ngx_http_lua_balancer_ssl_sess_store_by_chunk (lua_State * L ,
222+ ngx_http_request_t * r )
220223{
221224 u_char * err_msg ;
222225 size_t len ;
@@ -255,7 +258,8 @@ ngx_http_lua_balancer_ssl_sess_store_by_chunk(lua_State *L, ngx_http_request_t *
255258 }
256259
257260 ngx_log_error (NGX_LOG_ERR , r -> connection -> log , 0 ,
258- "failed to run balancer_ssl_session_store_by_lua*: %*s" , len , err_msg );
261+ "failed to run balancer_ssl_session_store_by_lua*: %*s" ,
262+ len , err_msg );
259263
260264 lua_settop (L , 0 ); /* clear remaining elems on stack */
261265
@@ -290,7 +294,8 @@ ngx_http_lua_ffi_ssl_set_upstream_session(ngx_http_request_t *r, void *session,
290294
291295
292296int
293- ngx_http_lua_ffi_ssl_get_upstream_session (ngx_http_request_t * r , void * * session , char * * err )
297+ ngx_http_lua_ffi_ssl_get_upstream_session (ngx_http_request_t * r ,
298+ void * * session , char * * err )
294299{
295300 ngx_ssl_session_t * ssl_session ;
296301
0 commit comments