wss example

Former-commit-id: fb1aad51214981533565129b784e6ab88c6a7a1a
This commit is contained in:
Gerasimos (Makis) Maropoulos 2017-02-17 07:19:53 +02:00
parent 85fdf39472
commit e52a062ff5

View File

@ -56,7 +56,7 @@ func main() {
// send our custom javascript source file before client really asks for that
// using the new go v1.8's HTTP/2 Push.
// Note that you have to listen using ListenTLS/ListenLETSENCRYPT in order this to work.
if err := ctx.ResponseWriter.Push("/js/chat.js", nil); err != nil {
if err := ctx.Push("/js/chat.js", nil); err != nil {
app.Log(iris.DevMode, err.Error())
}
ctx.Render("client.html", clientPage{"Client Page", ctx.Host()})