| 1515 | }; |
| 1516 | |
| 1517 | static void MakeLocalUrl(char* buffer, uint32_t buffer_size, bool secure, int port) |
| 1518 | { |
| 1519 | // Use IPv4 loopback explicitly so the standalone proxy and Jetty test servers |
| 1520 | // don't depend on platform-specific localhost address-family resolution. |
| 1521 | dmSnPrintf(buffer, buffer_size, "%s://127.0.0.1:%d", secure ? "https" : "http", port); |
| 1522 | } |
| 1523 | |
| 1524 | class DirectRequestHelper |
| 1525 | { |
no test coverage detected