mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
refactor(online): track count instead of raddr
This commit is contained in:
parent
88eef7617f
commit
ba9b3cdebb
3 changed files with 17 additions and 63 deletions
|
@ -196,6 +196,5 @@ type EventLogger interface {
|
|||
// The implementation of this interface must be thread-safe.
|
||||
type TrafficLogger interface {
|
||||
Log(id string, tx, rx uint64) (ok bool)
|
||||
LogOnline(id string, addr net.Addr)
|
||||
LogOffline(id string, addr net.Addr)
|
||||
LogOnlineStateChanged(id string, online bool)
|
||||
}
|
||||
|
|
|
@ -83,7 +83,7 @@ func (s *serverImpl) handleClient(conn quic.Connection) {
|
|||
err := h3s.ServeQUICConn(conn)
|
||||
// If the client is authenticated, we need to log the disconnect event
|
||||
if handler.authenticated && s.config.EventLogger != nil {
|
||||
s.config.TrafficLogger.LogOffline(handler.authID, conn.RemoteAddr())
|
||||
s.config.TrafficLogger.LogOnlineStateChanged(handler.authID, false)
|
||||
s.config.EventLogger.Disconnect(conn.RemoteAddr(), handler.authID, err)
|
||||
}
|
||||
_ = conn.CloseWithError(closeErrCodeOK, "")
|
||||
|
@ -155,7 +155,7 @@ func (h *h3sHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|||
w.WriteHeader(protocol.StatusAuthOK)
|
||||
// Call event logger
|
||||
if h.config.EventLogger != nil {
|
||||
h.config.TrafficLogger.LogOnline(id, h.conn.RemoteAddr())
|
||||
h.config.TrafficLogger.LogOnlineStateChanged(id, true)
|
||||
h.config.EventLogger.Connect(h.conn.RemoteAddr(), id, actualTx)
|
||||
}
|
||||
// Initialize UDP session manager (if UDP is enabled)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue