mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
1c8231eb9e
* Remove security from servertalk connections
* Remove the two hello steps before handshake that are now obsolete out
* Revert "Remove the two hello steps before handshake that are now obsolete out"
This reverts commit 32d61ea238.
* Keep old values for enums
* Use downgrade security handshake for backwards compat
* Send handshake instead of hello to fast connect
* Add connect callback so it will actually work
19 lines
272 B
C++
19 lines
272 B
C++
#pragma once
|
|
|
|
#include "../servertalk.h"
|
|
|
|
namespace EQ
|
|
{
|
|
namespace Net
|
|
{
|
|
enum ServertalkPacketType
|
|
{
|
|
ServertalkClientHello = 1,
|
|
ServertalkServerHello,
|
|
ServertalkClientHandshake,
|
|
ServertalkClientDowngradeSecurityHandshake,
|
|
ServertalkMessage,
|
|
};
|
|
}
|
|
}
|