| 164 | }; |
| 165 | |
| 166 | void |
| 167 | TSPluginInit(int argc ATSCPPAPI_UNUSED, const char *argv[] ATSCPPAPI_UNUSED) |
| 168 | { |
| 169 | Dbg(dbg_ctl, "Init"); |
| 170 | if (!RegisterGlobalPlugin("ServerPushPreloadPlugin", PLUGIN_NAME, "dev@trafficserver.apache.org")) { |
| 171 | return; |
| 172 | } |
| 173 | globalPlugin = new ServerPushGlobal(); |
| 174 | } |
| 175 | |
| 176 | TSReturnCode |
| 177 | TSRemapNewInstance(int argc ATSCPPAPI_UNUSED, char *argv[] ATSCPPAPI_UNUSED, void **instance_handle, char *errbuf ATSCPPAPI_UNUSED, |
nothing calls this directly
no test coverage detected