Called by ATS as our initialization point
| 173 | |
| 174 | // Called by ATS as our initialization point |
| 175 | void |
| 176 | TSPluginInit(int argc, const char *argv[]) |
| 177 | { |
| 178 | TSPluginRegistrationInfo info; |
| 179 | info.plugin_name = const_cast<char *>("SSL verify server test"); |
| 180 | info.vendor_name = const_cast<char *>("apache"); |
| 181 | info.support_email = const_cast<char *>("shinrich@apache.org"); |
| 182 | if (TSPluginRegister(&info) != TS_SUCCESS) { |
| 183 | TSError("[%s] Plugin registration failed", PN); |
| 184 | } |
| 185 | |
| 186 | int verify_count = 0; |
| 187 | parse_callbacks(argc, argv, verify_count); |
| 188 | setup_callbacks(verify_count); |
| 189 | return; |
| 190 | } |
nothing calls this directly
no test coverage detected