| 176 | } |
| 177 | |
| 178 | cripts::string_view |
| 179 | cripts::Versions::GetSV() |
| 180 | { |
| 181 | if (_version.length() == 0) { |
| 182 | const char *ver = TSTrafficServerVersionGet(); |
| 183 | |
| 184 | _version = cripts::string_view(ver, strlen(ver)); // ToDo: Annoyingly, we have ambiquity on the operator= |
| 185 | } |
| 186 | |
| 187 | return _version; |
| 188 | } |
| 189 | |
| 190 | // Globals |
| 191 | cripts::Proxy proxy; |
nothing calls this directly
no test coverage detected