• Felix Lange's avatar
    rpc/comms: use ConnState to track HTTP connections · ba14957c
    Felix Lange authored
    The JSON-RPC server wraps TCP connections in order to be able to shut
    down them down when RPC is stopped. This is rather scary code. Go 1.3
    introduced the http.Server.ConnState hook for such purposes. We can use
    this facility now that we depend on Go 1.4.
    
    There are multiple reasons for the switch apart from making the code
    less scary:
    
    * the TCP listener no longer ticks every second to check a channel
    * pending requests are allowed to finish after stopping the server
    * we can time out idle keep-alive connections
    ba14957c
http.go 8.57 KB