Skip to content

Releases: DGHeroin/redcon

v1.4.0: Added SetIdleClose

22 Feb 09:13
Compare
Choose a tag to compare
It's now possible to automatically close idle connections by
calling the SetIdleClose method.

    s := redcon.NewServer(...)
    s.SetIdleClose(time.Minute*5)
    s.ListenAndServe()

closed #34