mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-07 00:56:51 -05:00
5ea6ada452
* Added automap.go stub * Handle errors in original AutoMap.txt file * Completed AutoMapRecord struct and comments * AutoMap loader implemented * Update from base repo * Comments added to d2netpacket and d2netpackettype. Note, the Overview for d2netpacket is in net_packet.go. It could be placed in a doc.go file but net_packet.go seemed appropriate in this case. * Comments added to d2server * client_connection.go missed from previous commit * Comments added to d2client * Doc.go added to d2networking and other corrections
6 lines
238 B
Go
6 lines
238 B
Go
// Package d2server provides connection management and client synchronisation.
|
|
/*
|
|
Data is encoded to JSON and compressed using gzip. Transport is over UDP.
|
|
The server is authoritative for both local and remote clients.*/
|
|
package d2server
|