| 177 | } |
| 178 | |
| 179 | int |
| 180 | register_plugin() |
| 181 | { |
| 182 | TSPluginRegistrationInfo info; |
| 183 | |
| 184 | info.plugin_name = (char *)"compress"; |
| 185 | info.vendor_name = (char *)"Apache Software Foundation"; |
| 186 | info.support_email = (char *)"dev@trafficserver.apache.org"; |
| 187 | |
| 188 | if (TSPluginRegister(&info) != TS_SUCCESS) { |
| 189 | return 0; |
| 190 | } |
| 191 | return 1; |
| 192 | } |
| 193 | |
| 194 | void |
| 195 | log_compression_ratio(int64_t in, int64_t out) |
no test coverage detected