Skip to content

Commit

Permalink
updated old-versioned Transient flag for Limited on network.Conn
Browse files Browse the repository at this point in the history
  • Loading branch information
cortze committed Sep 25, 2024
1 parent c12a539 commit 614e34e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions host/host.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,14 @@ func (h *Host) Serve(ctx context.Context) error {
AgentVersion string
Direction string
Opened time.Time
Transient bool
Limited bool
}{
RemotePeer: c.RemotePeer().String(),
RemoteMaddrs: c.RemoteMultiaddr(),
AgentVersion: h.AgentVersion(c.RemotePeer()),
Direction: c.Stat().Direction.String(),
Opened: c.Stat().Opened,
// Transient: c.Stat().Transient,
Limited: c.Stat().Limited,
},
}

Expand Down

0 comments on commit 614e34e

Please sign in to comment.