aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/messages.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-10-03 06:30:17 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-10-03 06:41:39 +0200
commit323636085e1a6c063818a697b30e074578db258e (patch)
tree6b77529769ae29e1deb5523edd3bddc7f03583e5 /src/messages.h
parentglobal: satisfy bitshift pedantry (diff)
downloadwireguard-linux-compat-323636085e1a6c063818a697b30e074578db258e.tar.xz
wireguard-linux-compat-323636085e1a6c063818a697b30e074578db258e.zip
global: use _WG prefix for include guards
Suggested-by: Sultan Alsawaf <sultanxda@gmail.com> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/messages.h')
-rw-r--r--src/messages.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/messages.h b/src/messages.h
index 19488a6..0937942 100644
--- a/src/messages.h
+++ b/src/messages.h
@@ -4,8 +4,8 @@
* See doc/protocol.md for more info
*/
-#ifndef MESSAGES_H
-#define MESSAGES_H
+#ifndef _WG_MESSAGES_H
+#define _WG_MESSAGES_H
#include "crypto/curve25519.h"
#include "crypto/chacha20poly1305.h"
@@ -125,4 +125,4 @@ enum {
HANDSHAKE_DSCP = 0b10001000 /* AF41, plus 00 ECN */
};
-#endif
+#endif /* _WG_MESSAGES_H */