aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/noise.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/noise.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/noise.h')
-rw-r--r--src/noise.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/noise.h b/src/noise.h
index f6c68ea..f696c57 100644
--- a/src/noise.h
+++ b/src/noise.h
@@ -4,8 +4,8 @@
* See doc/protocol.md and https://github.com/trevp/noise/blob/master/noise.md for more info
*/
-#ifndef NOISE_H
-#define NOISE_H
+#ifndef _WG_NOISE_H
+#define _WG_NOISE_H
#include "messages.h"
#include "hashtables.h"
@@ -119,4 +119,4 @@ struct wireguard_peer *noise_handshake_consume_response(struct message_handshake
bool noise_handshake_begin_session(struct noise_handshake *handshake, struct noise_keypairs *keypairs);
-#endif
+#endif /* _WG_NOISE_H */