DarkflameServer/dNet/PacketUtils.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
291 B
C
Raw Normal View History

#ifndef PACKETUTILS_H
#define PACKETUTILS_H
#include "MessageIdentifiers.h"
#include "BitStream.h"
#include <string>
enum class eConnectionType : uint16_t;
namespace PacketUtils {
void SavePacket(const std::string& filename, const char* data, size_t length);
};
#endif // PACKETUTILS_H