diff --git a/Makefile b/Makefile index 0e5c960d0..60ee7e602 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ REPO := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) -EXE = $(REPO)/sarpd -STATIC_LIB = $(REPO)/libsarp.a +EXE = $(REPO)/llarpd +STATIC_LIB = $(REPO)/libllarp.a -STATIC_SRC_CPP = $(wildcard $(REPO)/libsarp/*.cpp) -STATIC_SRC_C = $(wildcard $(REPO)/libsarp/*.c) +STATIC_SRC_CPP = $(wildcard $(REPO)/llarp/*.cpp) +STATIC_SRC_C = $(wildcard $(REPO)/llarp/*.c) STATIC_OBJ = $(STATIC_SRC_CPP:.cpp=.cpp.o) $(STATIC_SRC_C:.c=.c.o) diff --git a/libsarp/address_info.c b/llarp/address_info.c similarity index 100% rename from libsarp/address_info.c rename to llarp/address_info.c diff --git a/libsarp/buffer.cpp b/llarp/buffer.cpp similarity index 100% rename from libsarp/buffer.cpp rename to llarp/buffer.cpp diff --git a/libsarp/config.cpp b/llarp/config.cpp similarity index 100% rename from libsarp/config.cpp rename to llarp/config.cpp diff --git a/libsarp/config.hpp b/llarp/config.hpp similarity index 100% rename from libsarp/config.hpp rename to llarp/config.hpp diff --git a/libsarp/crypto_libsodium.cpp b/llarp/crypto_libsodium.cpp similarity index 100% rename from libsarp/crypto_libsodium.cpp rename to llarp/crypto_libsodium.cpp diff --git a/libsarp/ev.cpp b/llarp/ev.cpp similarity index 100% rename from libsarp/ev.cpp rename to llarp/ev.cpp diff --git a/libsarp/ini.hpp b/llarp/ini.hpp similarity index 100% rename from libsarp/ini.hpp rename to llarp/ini.hpp diff --git a/libsarp/link.cpp b/llarp/link.cpp similarity index 100% rename from libsarp/link.cpp rename to llarp/link.cpp diff --git a/libsarp/link.hpp b/llarp/link.hpp similarity index 100% rename from libsarp/link.hpp rename to llarp/link.hpp diff --git a/libsarp/mem.cpp b/llarp/mem.cpp similarity index 100% rename from libsarp/mem.cpp rename to llarp/mem.cpp diff --git a/libsarp/mem_jemalloc.cpp b/llarp/mem_jemalloc.cpp similarity index 100% rename from libsarp/mem_jemalloc.cpp rename to llarp/mem_jemalloc.cpp diff --git a/libsarp/mem_std.cpp b/llarp/mem_std.cpp similarity index 100% rename from libsarp/mem_std.cpp rename to llarp/mem_std.cpp diff --git a/libsarp/router.cpp b/llarp/router.cpp similarity index 100% rename from libsarp/router.cpp rename to llarp/router.cpp diff --git a/libsarp/str.hpp b/llarp/str.hpp similarity index 100% rename from libsarp/str.hpp rename to llarp/str.hpp diff --git a/libsarp/time.cpp b/llarp/time.cpp similarity index 100% rename from libsarp/time.cpp rename to llarp/time.cpp diff --git a/readme.md b/readme.md index 9e975bec8..617031f90 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ -# SARP +# LLARP -Simple Anon Routing Protocol +Low Latency Anon Routing Protocol [rfc](doc/proto_v0.txt)