Browse Source

fixed comments at the end of include guards

cecylia 6 years ago
parent
commit
02f5617045

+ 2 - 1
relay_station/crypto.h

@@ -87,4 +87,5 @@ int check_tag(byte key[16], const byte privkey[PTWIST_BYTES],
 
 int partial_aes_gcm_tls_cipher(flow *f, unsigned char *out, const unsigned char *in, size_t len, uint8_t env);
 void partial_aes_gcm_tls_tag(flow *f, unsigned char *tag, size_t len);
-#endif
+
+#endif /* CRYPTO_H */

+ 1 - 1
relay_station/cryptothread.h

@@ -34,4 +34,4 @@ void crypto_locks_cleanup(void);
 
 void pthreads_thread_id(CRYPTO_THREADID *tid);
 void pthreads_locking_callback(int mode, int type, const char *file, int line);
-#endif /* _CRYPTOTHREAD_H_ */
+#endif /* CRYPTOTHREAD_H */

+ 1 - 1
relay_station/flow.h

@@ -245,4 +245,4 @@ int save_session_ticket(flow *f, uint8_t *hs, uint32_t len);
 
 int add_packet(flow *f, struct packet_info *info);
 
-#endif /* __RELAY_H__ */
+#endif /* FLOW_H */

+ 1 - 1
relay_station/ptwist.h

@@ -61,4 +61,4 @@ typedef unsigned char byte;
 void ptwist_pointmul(byte out[PTWIST_BYTES], const byte x[PTWIST_BYTES],
         const byte seckey[PTWIST_BYTES]);
 
-#endif
+#endif /* PTWIST_H */

+ 1 - 1
relay_station/relay.h

@@ -93,4 +93,4 @@ void *proxy_covert_site(void *data);
 #define FORFEIT_REST 0x80
 #define USE_REST 0x90
 
-#endif /* _RELAY_H_ */
+#endif /* RELAY_H */

+ 1 - 1
relay_station/slitheen.h

@@ -37,4 +37,4 @@ struct sniff_args {
 };
 
 
-#endif /* _SLITHEEN_H_ */
+#endif /* SLITHEEN_H */

+ 1 - 1
relay_station/util.h

@@ -55,4 +55,4 @@ void *dequeue(queue *list);
 void *peek(queue *list, int32_t n);
 void remove_queue(queue *list);
 
-#endif /*_UTIL_H_*/
+#endif /* UTIL_H */