Format Http.kt

Signed-off-by: Graham <gpe@openrs2.org>
pull/132/head
Graham 3 years ago
parent e5fc516ef1
commit 21cf2526c5
  1. 12
      game/src/main/kotlin/org/openrs2/game/net/http/Http.kt

@ -46,11 +46,13 @@ public object Http {
val keepAlive = isKeepAlive(request, version)
val response = DefaultHttpResponse(version, status)
response.headers().add(HttpHeaderNames.CONNECTION, if (keepAlive) {
HttpHeaderValues.KEEP_ALIVE
} else {
HttpHeaderValues.CLOSE
})
response.headers().add(
HttpHeaderNames.CONNECTION, if (keepAlive) {
HttpHeaderValues.KEEP_ALIVE
} else {
HttpHeaderValues.CLOSE
}
)
response.headers().add(HttpHeaderNames.SERVER, BANNER)
response.headers().add(HttpHeaderNames.CONTENT_TYPE, contentType)
response.headers().add(HttpHeaderNames.CONTENT_LENGTH, contentLength)

Loading…
Cancel
Save