mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-12-30 14:07:06 -05:00
336c6719ee
* Connection manager implementation to disconnect timed out users. * Connection manager implementation to disconnect timed out users.
16 lines
500 B
Go
16 lines
500 B
Go
package d2server
|
|
|
|
import (
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2game/d2player"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2networking/d2client/d2clientconnectiontype"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2networking/d2netpacket"
|
|
)
|
|
|
|
type ClientConnection interface {
|
|
GetUniqueId() string
|
|
GetConnectionType() d2clientconnectiontype.ClientConnectionType
|
|
SendPacketToClient(packet d2netpacket.NetPacket) error
|
|
GetPlayerState() *d2player.PlayerState
|
|
SetPlayerState(playerState *d2player.PlayerState)
|
|
}
|