summaryrefslogtreecommitdiff
path: root/src/net/packetinfo.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-31 19:59:51 +0300
committerAndrei Karas <akaras@inbox.ru>2015-09-01 00:19:20 +0300
commit854c72570f49f7ed57f35fce72bc91ebdc08d2ac (patch)
tree577c1b4ce129c52cabbb8665bf1b562a2e3d4f6c /src/net/packetinfo.h
parent366de9963d24841483e6ed8ff4a88f775a1c2fcf (diff)
downloadplus-854c72570f49f7ed57f35fce72bc91ebdc08d2ac.tar.gz
plus-854c72570f49f7ed57f35fce72bc91ebdc08d2ac.tar.bz2
plus-854c72570f49f7ed57f35fce72bc91ebdc08d2ac.tar.xz
plus-854c72570f49f7ed57f35fce72bc91ebdc08d2ac.zip
Add ability to log received packet names to log file.
Also add arrays with id to package info mapping for inbound packets.
Diffstat (limited to 'src/net/packetinfo.h')
-rw-r--r--src/net/packetinfo.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/net/packetinfo.h b/src/net/packetinfo.h
new file mode 100644
index 000000000..8c2609439
--- /dev/null
+++ b/src/net/packetinfo.h
@@ -0,0 +1,36 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2015 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NET_PACKETINFO_H
+#define NET_PACKETINFO_H
+
+struct PacketInfo
+{
+ PacketInfo() :
+ name(nullptr),
+ len(0)
+ {
+ }
+
+ const char *name;
+ int len;
+};
+
+#endif // NET_PACKETINFO_H