seekia/internal/network/activeConnections/activeConnections.go

12 lines
671 B
Go

// activeConnections provides functions to monitor the active connections the client is making
// Active connections can be viewed through the GUI.
package activeConnections
//TODO: Build this package
// We should store connection info in memory which will be deleted upon application closure.
// We want the user to be able to view active connections in the GUI.
// Each connection will show the IP address of the peer and how much data is being transferred in each direction.
// We should take inspiration from torrent clients that show the details of connected peers.
// We should include IP location info within Seekia so we can show the estimated peer locations.