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
commitf45345b7723f09c94a829d90689d052c864f5b86 (patch)
treea697ef14c4903691878a7abb401def97bf505cba /src/noise.h
parentglobal: satisfy bitshift pedantry (diff)
downloadwireguard-monolithic-historical-f45345b7723f09c94a829d90689d052c864f5b86.tar.xz
wireguard-monolithic-historical-f45345b7723f09c94a829d90689d052c864f5b86.zip
global: use _WG prefix for include guards
Suggested-by: Sultan Alsawaf <sultanxda@gmail.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 */