You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
576 B
C++
27 lines
576 B
C++
//
|
|
// Created by koncord on 28.04.16.
|
|
//
|
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include "PacketHandshake.hpp"
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketHandshake::PacketHandshake(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_HANDSHAKE;
|
|
orderChannel = CHANNEL_SYSTEM;
|
|
}
|
|
|
|
void PacketHandshake::Packet(RakNet::BitStream *bs, bool send)
|
|
{
|
|
PlayerPacket::Packet(bs, send);
|
|
|
|
if (!RW(player->npc.mName, send, true, maxNameLen) ||
|
|
!RW(player->passw, send, true, maxPasswLen))
|
|
{
|
|
packetValid = false;
|
|
return;
|
|
}
|
|
}
|