| 8176 | } |
| 8177 | |
| 8178 | static int show_ssl_get_default_timeout(THD *thd, SHOW_VAR *var, char *buff) |
| 8179 | { |
| 8180 | var->type= SHOW_LONG; |
| 8181 | var->value= buff; |
| 8182 | if( thd->vio_ok() && thd->net.vio->ssl_arg ) |
| 8183 | *((long *)buff)= (long)SSL_get_default_timeout((SSL*)thd->net.vio->ssl_arg); |
| 8184 | else |
| 8185 | *((long *)buff)= 0; |
| 8186 | return 0; |
| 8187 | } |
| 8188 | |
| 8189 | static int show_ssl_get_verify_mode(THD *thd, SHOW_VAR *var, char *buff) |
| 8190 | { |
nothing calls this directly
no outgoing calls
no test coverage detected