From 4851c54c92554f9c6ac65b47929f53e7ba30deea Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 19 Nov 2018 23:27:59 +0000 Subject: [PATCH 1/6] Rename common.h --- include/llarp/bencode.h | 2 +- include/llarp/buffer.h | 2 +- include/llarp/{common.h => common.hpp} | 4 ++-- include/llarp/crypto.h | 2 +- include/llarp/nodedb.hpp | 2 +- include/llarp/string.h | 2 +- include/llarp/timer.hpp | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) rename include/llarp/{common.h => common.hpp} (75%) diff --git a/include/llarp/bencode.h b/include/llarp/bencode.h index b93ba468d..128364309 100644 --- a/include/llarp/bencode.h +++ b/include/llarp/bencode.h @@ -1,7 +1,7 @@ #ifndef LLARP_BENCODE_H #define LLARP_BENCODE_H #include -#include +#include #include #include #include diff --git a/include/llarp/buffer.h b/include/llarp/buffer.h index 0bd6211b4..ee7d50bd7 100644 --- a/include/llarp/buffer.h +++ b/include/llarp/buffer.h @@ -1,6 +1,6 @@ #ifndef LLARP_BUFFER_H_ #define LLARP_BUFFER_H_ -#include +#include #include #include #include diff --git a/include/llarp/common.h b/include/llarp/common.hpp similarity index 75% rename from include/llarp/common.h rename to include/llarp/common.hpp index f7d741ad5..3ef490f75 100644 --- a/include/llarp/common.h +++ b/include/llarp/common.hpp @@ -1,5 +1,5 @@ -#ifndef LLARP_COMMON_H -#define LLARP_COMMON_H +#ifndef LLARP_COMMON_HPP +#define LLARP_COMMON_HPP #ifdef __STRICT_ANSI__ #define INLINE __inline__ #else diff --git a/include/llarp/crypto.h b/include/llarp/crypto.h index f1e0874fe..6b7211e9b 100644 --- a/include/llarp/crypto.h +++ b/include/llarp/crypto.h @@ -1,7 +1,7 @@ #ifndef LLARP_CRYPTO_H_ #define LLARP_CRYPTO_H_ #include -#include +#include #include #include diff --git a/include/llarp/nodedb.hpp b/include/llarp/nodedb.hpp index 61784b1f0..1c3ba4012 100644 --- a/include/llarp/nodedb.hpp +++ b/include/llarp/nodedb.hpp @@ -1,6 +1,6 @@ #ifndef LLARP_NODEDB_HPP #define LLARP_NODEDB_HPP -#include +#include #include #include #include diff --git a/include/llarp/string.h b/include/llarp/string.h index 4b74b59f0..80aad1a70 100644 --- a/include/llarp/string.h +++ b/include/llarp/string.h @@ -1,6 +1,6 @@ #ifndef LLARP_STRING_H #define LLARP_STRING_H -#include +#include #ifndef __FreeBSD__ #if !(__APPLE__ && __MACH__) diff --git a/include/llarp/timer.hpp b/include/llarp/timer.hpp index 291b1f07f..c78e1e23d 100644 --- a/include/llarp/timer.hpp +++ b/include/llarp/timer.hpp @@ -1,7 +1,7 @@ #ifndef LLARP_TIMER_HPP #define LLARP_TIMER_HPP -#include +#include #include #include From e39d02ddc2ad90b7c317e01704c9d1a309036f34 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 19 Nov 2018 23:38:39 +0000 Subject: [PATCH 2/6] Rename version.h --- include/llarp.h | 2 +- include/llarp/{version.h => version.hpp} | 5 +++-- llarp/router_contact.cpp | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) rename include/llarp/{version.h => version.hpp} (92%) diff --git a/include/llarp.h b/include/llarp.h index 6607a25f1..7dc4079f2 100644 --- a/include/llarp.h +++ b/include/llarp.h @@ -4,7 +4,7 @@ #include #include #include -#include +#include #ifdef __cplusplus #include // for service::address diff --git a/include/llarp/version.h b/include/llarp/version.hpp similarity index 92% rename from include/llarp/version.h rename to include/llarp/version.hpp index b831571e3..56e807670 100644 --- a/include/llarp/version.h +++ b/include/llarp/version.hpp @@ -1,5 +1,5 @@ -#ifndef LLARP_VERSION_H -#define LLARP_VERSION_H +#ifndef LLARP_VERSION_HPP +#define LLARP_VERSION_HPP #ifndef LLARP_VERSION_MAJ #define LLARP_VERSION_MAJ "0" @@ -28,4 +28,5 @@ #ifndef LLARP_RELEASE_MOTTO #define LLARP_RELEASE_MOTTO "(dev build)" #endif + #endif diff --git a/llarp/router_contact.cpp b/llarp/router_contact.cpp index c3abbc656..dc60f93da 100644 --- a/llarp/router_contact.cpp +++ b/llarp/router_contact.cpp @@ -3,7 +3,7 @@ #include #include #include -#include +#include #include "buffer.hpp" #include "logger.hpp" #include "mem.hpp" From f91d2b9e11ef0f744a90fd1fc9fbabe17663ac3a Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 19 Nov 2018 23:40:38 +0000 Subject: [PATCH 3/6] Rename proto.h --- include/llarp/bencode.h | 2 +- include/llarp/{proto.h => proto.hpp} | 4 ++-- llarp/router.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename include/llarp/{proto.h => proto.hpp} (74%) diff --git a/include/llarp/bencode.h b/include/llarp/bencode.h index 128364309..1e2ab7b5d 100644 --- a/include/llarp/bencode.h +++ b/include/llarp/bencode.h @@ -2,7 +2,7 @@ #define LLARP_BENCODE_H #include #include -#include +#include #include #include diff --git a/include/llarp/proto.h b/include/llarp/proto.hpp similarity index 74% rename from include/llarp/proto.h rename to include/llarp/proto.hpp index c720622e1..d2067331c 100644 --- a/include/llarp/proto.h +++ b/include/llarp/proto.hpp @@ -1,5 +1,5 @@ -#ifndef LLARP_PROTO_H -#define LLARP_PROTO_H +#ifndef LLARP_PROTO_HPP +#define LLARP_PROTO_HPP #ifndef LLARP_PROTO_VERSION #define LLARP_PROTO_VERSION (0) diff --git a/llarp/router.cpp b/llarp/router.cpp index 18ea451c4..fe216b72d 100644 --- a/llarp/router.cpp +++ b/llarp/router.cpp @@ -1,5 +1,5 @@ #include "router.hpp" -#include +#include #include #include #include From 1c0cf72c021301c6c683df380361788455417891 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 19 Nov 2018 23:47:22 +0000 Subject: [PATCH 4/6] Rename endian.h --- include/llarp/{endian.h => endian.hpp} | 4 ++-- llarp/buffer.cpp | 2 +- llarp/dns.cpp | 6 +++--- llarp/ip.cpp | 3 +-- llarp/link/utp.cpp | 2 +- 5 files changed, 8 insertions(+), 9 deletions(-) rename include/llarp/{endian.h => endian.hpp} (98%) diff --git a/include/llarp/endian.h b/include/llarp/endian.hpp similarity index 98% rename from include/llarp/endian.h rename to include/llarp/endian.hpp index 6405dd97b..fd859828a 100644 --- a/include/llarp/endian.h +++ b/include/llarp/endian.hpp @@ -1,5 +1,5 @@ -#ifndef LLARP_ENDIAN_H -#define LLARP_ENDIAN_H +#ifndef LLARP_ENDIAN_HPP +#define LLARP_ENDIAN_HPP // adapted from libi2pd diff --git a/llarp/buffer.cpp b/llarp/buffer.cpp index db5a6cf8c..2345e0e79 100644 --- a/llarp/buffer.cpp +++ b/llarp/buffer.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include #include diff --git a/llarp/dns.cpp b/llarp/dns.cpp index ae74d5229..5236ba1d2 100644 --- a/llarp/dns.cpp +++ b/llarp/dns.cpp @@ -1,4 +1,4 @@ -#include +#include #include // for llarp_handle_dnsd_recvfrom, dnsc #include @@ -212,7 +212,7 @@ extern "C" } */ question->name = m_qName; - + question->type = get16bits(moveable); (*pos) += 2; // printf("Now1 at [%d]\n", buffer - start); @@ -244,7 +244,7 @@ extern "C" //hexDump(moveable, 12); //hexDumpAt(buffer, *pos, 12); - + if(*moveable == '\xc0') { // hexDump(moveable, 2); diff --git a/llarp/ip.cpp b/llarp/ip.cpp index a3042a352..321e3bf16 100644 --- a/llarp/ip.cpp +++ b/llarp/ip.cpp @@ -1,4 +1,4 @@ -#include +#include #include #include #include "llarp/buffer.hpp" @@ -6,7 +6,6 @@ #ifndef _WIN32 #include #endif -#include #include #include diff --git a/llarp/link/utp.cpp b/llarp/link/utp.cpp index 50fbf7972..993e762f2 100644 --- a/llarp/link/utp.cpp +++ b/llarp/link/utp.cpp @@ -3,7 +3,7 @@ #include #include #include -#include +#include #include #include #include From d750ec06053d8cb545d976ccc8d35976b5685098 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 19 Nov 2018 23:57:28 +0000 Subject: [PATCH 5/6] Rename logic.h --- include/llarp.h | 2 +- include/llarp/link/server.hpp | 2 +- include/llarp/{logic.h => logic.hpp} | 4 ++-- include/llarp/router.h | 2 +- libabyss/include/abyss/server.hpp | 2 +- llarp/ev.cpp | 2 +- llarp/logic.cpp | 2 +- llarp/nodedb.cpp | 2 +- test/test_dns_unit.cpp | 2 +- test/test_dnsc_unit.cpp | 2 +- test/test_dnsd_unit.cpp | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) rename include/llarp/{logic.h => logic.hpp} (95%) diff --git a/include/llarp.h b/include/llarp.h index 7dc4079f2..acfc7c749 100644 --- a/include/llarp.h +++ b/include/llarp.h @@ -2,7 +2,7 @@ #define LLARP_H_ #include #include -#include +#include #include #include diff --git a/include/llarp/link/server.hpp b/include/llarp/link/server.hpp index 09a755d35..ac15ea70f 100644 --- a/include/llarp/link/server.hpp +++ b/include/llarp/link/server.hpp @@ -7,7 +7,7 @@ #include #include #include -#include +#include #include struct llarp_router; diff --git a/include/llarp/logic.h b/include/llarp/logic.hpp similarity index 95% rename from include/llarp/logic.h rename to include/llarp/logic.hpp index e293f3f42..6b2fbf832 100644 --- a/include/llarp/logic.h +++ b/include/llarp/logic.hpp @@ -1,5 +1,5 @@ -#ifndef LLARP_LOGIC_H -#define LLARP_LOGIC_H +#ifndef LLARP_LOGIC_HPP +#define LLARP_LOGIC_HPP #include #include #include diff --git a/include/llarp/router.h b/include/llarp/router.h index 7cf3497b6..f58a00472 100644 --- a/include/llarp/router.h +++ b/include/llarp/router.h @@ -2,7 +2,7 @@ #define LLARP_ROUTER_H_ #include #include -#include +#include #include #include diff --git a/libabyss/include/abyss/server.hpp b/libabyss/include/abyss/server.hpp index 8c069d251..2de7add48 100644 --- a/libabyss/include/abyss/server.hpp +++ b/libabyss/include/abyss/server.hpp @@ -2,7 +2,7 @@ #define __ABYSS_SERVER_HPP__ #include -#include +#include #include #include #include diff --git a/llarp/ev.cpp b/llarp/ev.cpp index 59aef067c..13a612aa3 100644 --- a/llarp/ev.cpp +++ b/llarp/ev.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include #include diff --git a/llarp/logic.cpp b/llarp/logic.cpp index 4d3cd42b1..e775bd7ca 100644 --- a/llarp/logic.cpp +++ b/llarp/logic.cpp @@ -1,4 +1,4 @@ -#include +#include #include #include "logger.hpp" diff --git a/llarp/nodedb.cpp b/llarp/nodedb.cpp index 7d1a3e3ce..46b72b4ad 100644 --- a/llarp/nodedb.cpp +++ b/llarp/nodedb.cpp @@ -1,4 +1,4 @@ -#include +#include #include #include diff --git a/test/test_dns_unit.cpp b/test/test_dns_unit.cpp index adae07886..4536007ad 100644 --- a/test/test_dns_unit.cpp +++ b/test/test_dns_unit.cpp @@ -1,6 +1,6 @@ #include #include // for llarp_main_init -#include // for threadpool/llarp_logic +#include // for threadpool/llarp_logic #include "llarp/net.hpp" // for llarp::Addr #include "llarp/dns.hpp" #include "llarp/dnsc.hpp" diff --git a/test/test_dnsc_unit.cpp b/test/test_dnsc_unit.cpp index 9c6de37ea..e585fbea5 100644 --- a/test/test_dnsc_unit.cpp +++ b/test/test_dnsc_unit.cpp @@ -1,5 +1,5 @@ #include #include // for llarp_main_init -#include // for threadpool/llarp_logic +#include // for threadpool/llarp_logic #include "llarp/net.hpp" // for llarp::Addr #include "llarp/dnsc.hpp" diff --git a/test/test_dnsd_unit.cpp b/test/test_dnsd_unit.cpp index 7975de9d9..a038ccf79 100644 --- a/test/test_dnsd_unit.cpp +++ b/test/test_dnsd_unit.cpp @@ -1,6 +1,6 @@ #include #include // for llarp_main_init -#include // for threadpool/llarp_logic +#include // for threadpool/llarp_logic #include "llarp/net.hpp" // for llarp::Addr #include "llarp/dnsd.hpp" From d21af22ca365a947ac3b4d62f93091614d7fd41e Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 20 Nov 2018 00:51:03 +0000 Subject: [PATCH 6/6] Rename defaults.h --- include/llarp/{defaults.h => defaults.hpp} | 6 +++--- llarp/config.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename include/llarp/{defaults.h => defaults.hpp} (90%) diff --git a/include/llarp/defaults.h b/include/llarp/defaults.hpp similarity index 90% rename from include/llarp/defaults.h rename to include/llarp/defaults.hpp index 8e5fd4f83..863fd2190 100644 --- a/include/llarp/defaults.h +++ b/include/llarp/defaults.hpp @@ -1,5 +1,5 @@ -#ifndef LLARP_DEFAULTS_H -#define LLARP_DEFAULTS_H +#ifndef LLARP_DEFAULTS_HPP +#define LLARP_DEFAULTS_HPP #ifndef DEFAULT_RESOLVER_US #define DEFAULT_RESOLVER_US "1.1.1.1" @@ -27,4 +27,4 @@ #endif #endif -#endif \ No newline at end of file +#endif diff --git a/llarp/config.cpp b/llarp/config.cpp index 2d1b0e885..0c4d003fd 100644 --- a/llarp/config.cpp +++ b/llarp/config.cpp @@ -1,6 +1,6 @@ #include "config.hpp" #include -#include +#include #include #include "fs.hpp" #include "ini.hpp"