mirror of https://github.com/PurpleI2P/i2pd.git
orignal
9 years ago
24 changed files with 780 additions and 516 deletions
@ -1,86 +1,167 @@
@@ -1,86 +1,167 @@
|
||||
#include <boost/date_time/posix_time/posix_time.hpp> |
||||
/*
|
||||
* Copyright (c) 2013-2016, The PurpleI2P Project |
||||
* |
||||
* This file is part of Purple i2pd project and licensed under BSD3 |
||||
* |
||||
* See full license text in LICENSE file at top of project tree |
||||
*/ |
||||
|
||||
#include "Log.h" |
||||
|
||||
Log * g_Log = nullptr; |
||||
namespace i2p { |
||||
namespace log { |
||||
Log logger; |
||||
/**
|
||||
* @enum Maps our loglevel to their symbolic name |
||||
*/ |
||||
static const char * g_LogLevelStr[eNumLogLevels] = |
||||
{ |
||||
"error", // eLogError
|
||||
"warn", // eLogWarn
|
||||
"info", // eLogInfo
|
||||
"debug" // eLogDebug
|
||||
}; |
||||
|
||||
static const char * g_LogLevelStr[eNumLogLevels] = |
||||
{ |
||||
"error", // eLogError
|
||||
"warn", // eLogWarning
|
||||
"info", // eLogInfo
|
||||
"debug" // eLogDebug
|
||||
}; |
||||
#ifndef _WIN32 |
||||
/**
|
||||
* @brief Maps our log levels to syslog one |
||||
* @return syslog priority LOG_*, as defined in syslog.h |
||||
*/ |
||||
static inline int GetSyslogPrio (enum LogLevel l) { |
||||
int priority = LOG_DEBUG; |
||||
switch (l) { |
||||
case eLogError : priority = LOG_ERR; break; |
||||
case eLogWarning : priority = LOG_WARNING; break; |
||||
case eLogInfo : priority = LOG_INFO; break; |
||||
case eLogDebug : priority = LOG_DEBUG; break; |
||||
default : priority = LOG_DEBUG; break; |
||||
} |
||||
return priority; |
||||
} |
||||
#endif |
||||
|
||||
void LogMsg::Process() |
||||
{ |
||||
auto stream = log ? log->GetLogStream () : nullptr; |
||||
auto& output = stream ? *stream : std::cout; |
||||
if (log) |
||||
output << log->GetTimestamp (); |
||||
else |
||||
output << boost::posix_time::second_clock::local_time().time_of_day (); |
||||
output << "/" << g_LogLevelStr[level] << " - "; |
||||
output << s.str(); |
||||
} |
||||
Log::Log(): |
||||
m_Destination(eLogStdout), m_MinLevel(eLogInfo), |
||||
m_LogStream (nullptr), m_Logfile(""), m_IsReady(false) |
||||
{ |
||||
} |
||||
|
||||
const std::string& Log::GetTimestamp () |
||||
{ |
||||
#if (__GNUC__ == 4) && (__GNUC_MINOR__ <= 6) && !defined(__clang__) |
||||
auto ts = std::chrono::monotonic_clock::now (); |
||||
#else |
||||
auto ts = std::chrono::steady_clock::now (); |
||||
#endif |
||||
if (ts > m_LastTimestampUpdate + std::chrono::milliseconds (500)) // 0.5 second
|
||||
Log::~Log () |
||||
{ |
||||
m_LastTimestampUpdate = ts; |
||||
m_Timestamp = boost::posix_time::to_simple_string (boost::posix_time::second_clock::local_time().time_of_day ()); |
||||
} |
||||
return m_Timestamp; |
||||
} |
||||
switch (m_Destination) { |
||||
#ifndef _WIN32 |
||||
case eLogSyslog : |
||||
closelog(); |
||||
break; |
||||
#endif |
||||
case eLogFile: |
||||
case eLogStream: |
||||
m_LogStream->flush(); |
||||
break; |
||||
default: |
||||
/* do nothing */ |
||||
break; |
||||
} |
||||
Process(); |
||||
} |
||||
|
||||
void Log::Flush () |
||||
{ |
||||
if (m_LogStream) |
||||
m_LogStream->flush(); |
||||
} |
||||
void Log::SetLogLevel (const std::string& level) { |
||||
if (level == "error") { m_MinLevel = eLogError; } |
||||
else if (level == "warn") { m_MinLevel = eLogWarning; } |
||||
else if (level == "info") { m_MinLevel = eLogInfo; } |
||||
else if (level == "debug") { m_MinLevel = eLogDebug; } |
||||
else { |
||||
LogPrint(eLogError, "Log: unknown loglevel: ", level); |
||||
return; |
||||
} |
||||
LogPrint(eLogInfo, "Log: min messages level set to ", level); |
||||
} |
||||
|
||||
const char * Log::TimeAsString(std::time_t t) { |
||||
if (t != m_LastTimestamp) { |
||||
strftime(m_LastDateTime, sizeof(m_LastDateTime), "%H:%M:%S", localtime(&t)); |
||||
m_LastTimestamp = t; |
||||
} |
||||
return m_LastDateTime; |
||||
} |
||||
|
||||
void Log::SetLogFile (const std::string& fullFilePath, bool truncate) |
||||
{ |
||||
m_FullFilePath = fullFilePath; |
||||
auto mode = std::ofstream::out | std::ofstream::binary; |
||||
mode |= truncate ? std::ofstream::trunc : std::ofstream::app; |
||||
auto logFile = std::make_shared<std::ofstream> (fullFilePath, mode); |
||||
if (logFile->is_open ()) |
||||
{ |
||||
SetLogStream (logFile); |
||||
LogPrint(eLogInfo, "Log: will send messages to ", fullFilePath); |
||||
} |
||||
} |
||||
/**
|
||||
* @note This function better to be run in separate thread due to disk i/o. |
||||
* Unfortunately, with current startup process with late fork() this |
||||
* will give us nothing but pain. Maybe later. See in NetDb as example. |
||||
*/ |
||||
void Log::Process() { |
||||
std::unique_lock<std::mutex> l(m_OutputLock); |
||||
std::hash<std::thread::id> hasher; |
||||
unsigned short short_tid; |
||||
while (1) { |
||||
auto msg = m_Queue.GetNextWithTimeout (1); |
||||
if (!msg) |
||||
break; |
||||
short_tid = (short) (hasher(msg->tid) % 1000); |
||||
switch (m_Destination) { |
||||
#ifndef _WIN32 |
||||
case eLogSyslog: |
||||
syslog(GetSyslogPrio(msg->level), "[%03u] %s", short_tid, msg->text.c_str()); |
||||
break; |
||||
#endif |
||||
case eLogFile: |
||||
case eLogStream: |
||||
*m_LogStream << TimeAsString(msg->timestamp) |
||||
<< "@" << short_tid |
||||
<< "/" << g_LogLevelStr[msg->level] |
||||
<< " - " << msg->text << std::endl; |
||||
break; |
||||
case eLogStdout: |
||||
default: |
||||
std::cout << TimeAsString(msg->timestamp) |
||||
<< "@" << short_tid |
||||
<< "/" << g_LogLevelStr[msg->level] |
||||
<< " - " << msg->text << std::endl; |
||||
break; |
||||
} // switch
|
||||
} // while
|
||||
} |
||||
|
||||
void Log::ReopenLogFile () |
||||
{ |
||||
if (m_FullFilePath.length () > 0) |
||||
{ |
||||
SetLogFile (m_FullFilePath, false); // don't truncate
|
||||
LogPrint(eLogInfo, "Log: file ", m_FullFilePath, " reopen"); |
||||
void Log::Append(std::shared_ptr<i2p::log::LogMsg> & msg) { |
||||
m_Queue.Put(msg); |
||||
if (!m_IsReady) |
||||
return; |
||||
Process(); |
||||
} |
||||
} |
||||
|
||||
void Log::SendTo (const std::string& path) { |
||||
auto flags = std::ofstream::out | std::ofstream::app; |
||||
auto os = std::make_shared<std::ofstream> (path, flags); |
||||
if (os->is_open ()) { |
||||
m_Logfile = path; |
||||
m_Destination = eLogFile; |
||||
m_LogStream = os; |
||||
return; |
||||
} |
||||
LogPrint(eLogError, "Log: can't open file ", path); |
||||
} |
||||
|
||||
void Log::SetLogLevel (const std::string& level) |
||||
{ |
||||
if (level == "error") { m_MinLevel = eLogError; } |
||||
else if (level == "warn") { m_MinLevel = eLogWarning; } |
||||
else if (level == "info") { m_MinLevel = eLogInfo; } |
||||
else if (level == "debug") { m_MinLevel = eLogDebug; } |
||||
else { |
||||
LogPrint(eLogError, "Log: Unknown loglevel: ", level); |
||||
return; |
||||
} |
||||
LogPrint(eLogInfo, "Log: min msg level set to ", level); |
||||
} |
||||
void Log::SendTo (std::shared_ptr<std::ostream> os) { |
||||
m_Destination = eLogStream; |
||||
m_LogStream = os; |
||||
} |
||||
|
||||
void Log::SetLogStream (std::shared_ptr<std::ostream> logStream) |
||||
{ |
||||
m_LogStream = logStream; |
||||
} |
||||
#ifndef _WIN32 |
||||
void Log::SendTo(const char *name, int facility) { |
||||
m_Destination = eLogSyslog; |
||||
m_LogStream = nullptr; |
||||
openlog(name, LOG_CONS | LOG_PID, facility); |
||||
} |
||||
#endif |
||||
|
||||
void Log::Reopen() { |
||||
if (m_Destination == eLogFile) |
||||
SendTo(m_Logfile); |
||||
} |
||||
|
||||
Log & Logger() { |
||||
return logger; |
||||
} |
||||
} // log
|
||||
} // i2p
|
||||
|
@ -1,91 +1,91 @@
@@ -1,91 +1,91 @@
|
||||
UNAME := $(shell uname -s) |
||||
SHLIB := libi2pd.so |
||||
ARLIB := libi2pd.a |
||||
SHLIB_CLIENT := libi2pdclient.so |
||||
ARLIB_CLIENT := libi2pdclient.a |
||||
I2PD := i2pd |
||||
GREP := fgrep |
||||
DEPS := obj/make.dep |
||||
|
||||
include filelist.mk |
||||
|
||||
USE_AESNI := yes |
||||
USE_STATIC := no |
||||
|
||||
ifeq ($(UNAME),Darwin) |
||||
DAEMON_SRC += DaemonLinux.cpp |
||||
include Makefile.osx |
||||
else ifeq ($(shell echo $(UNAME) | $(GREP) -c FreeBSD),1) |
||||
DAEMON_SRC += DaemonLinux.cpp |
||||
include Makefile.bsd |
||||
else ifeq ($(UNAME),Linux) |
||||
DAEMON_SRC += DaemonLinux.cpp |
||||
include Makefile.linux |
||||
else # win32 mingw
|
||||
DAEMON_SRC += DaemonWin32.cpp Win32/Win32Service.cpp Win32/Win32App.cpp |
||||
include Makefile.mingw |
||||
endif |
||||
|
||||
all: mk_obj_dir $(ARLIB) $(ARLIB_CLIENT) $(I2PD) |
||||
|
||||
mk_obj_dir: |
||||
@mkdir -p obj |
||||
@mkdir -p obj/Win32 |
||||
|
||||
api: mk_obj_dir $(SHLIB) $(ARLIB) |
||||
api_client: mk_obj_dir $(SHLIB) $(ARLIB) $(SHLIB_CLIENT) $(ARLIB_CLIENT) |
||||
|
||||
## NOTE: The NEEDED_CXXFLAGS are here so that CXXFLAGS can be specified at build time
|
||||
## **without** overwriting the CXXFLAGS which we need in order to build.
|
||||
## For example, when adding 'hardening flags' to the build
|
||||
## (e.g. -fstack-protector-strong -Wformat -Werror=format-security), we do not want to remove
|
||||
## -std=c++11. If you want to remove this variable please do so in a way that allows setting
|
||||
## custom FLAGS to work at build-time.
|
||||
|
||||
deps: mk_obj_dir |
||||
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) -MM *.cpp > $(DEPS) |
||||
@sed -i -e '/\.o:/ s/^/obj\//' $(DEPS) |
||||
|
||||
obj/%.o: %.cpp |
||||
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) $(CPU_FLAGS) -c -o $@ $< |
||||
|
||||
# '-' is 'ignore if missing' on first run
|
||||
-include $(DEPS) |
||||
|
||||
DAEMON_OBJS += $(patsubst %.cpp,obj/%.o,$(DAEMON_SRC)) |
||||
$(I2PD): $(DAEMON_OBJS) $(ARLIB) $(ARLIB_CLIENT) |
||||
$(CXX) -o $@ $^ $(LDLIBS) $(LDFLAGS) |
||||
|
||||
$(SHLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC)) |
||||
ifneq ($(USE_STATIC),yes) |
||||
$(CXX) $(LDFLAGS) $(LDLIBS) -shared -o $@ $^ |
||||
endif |
||||
|
||||
$(SHLIB_CLIENT): $(patsubst %.cpp,obj/%.o,$(LIB_CLIENT_SRC)) |
||||
$(CXX) $(LDFLAGS) $(LDLIBS) -shared -o $@ $^ |
||||
|
||||
$(ARLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC)) |
||||
ar -r $@ $^ |
||||
|
||||
$(ARLIB_CLIENT): $(patsubst %.cpp,obj/%.o,$(LIB_CLIENT_SRC)) |
||||
ar -r $@ $^ |
||||
|
||||
clean: |
||||
rm -rf obj |
||||
$(RM) $(I2PD) $(SHLIB) $(ARLIB) $(SHLIB_CLIENT) $(ARLIB_CLIENT) |
||||
|
||||
strip: $(I2PD) $(SHLIB_CLIENT) $(SHLIB) |
||||
strip $^ |
||||
|
||||
LATEST_TAG=$(shell git describe --tags --abbrev=0 master) |
||||
dist: |
||||
git archive --format=tar.gz -9 --worktree-attributes \
|
||||
--prefix=i2pd_$(LATEST_TAG)/ $(LATEST_TAG) -o i2pd_$(LATEST_TAG).tar.gz |
||||
|
||||
.PHONY: all |
||||
.PHONY: clean |
||||
.PHONY: deps |
||||
.PHONY: dist |
||||
.PHONY: api |
||||
.PHONY: api_client |
||||
.PHONY: mk_obj_dir |
||||
UNAME := $(shell uname -s) |
||||
SHLIB := libi2pd.so |
||||
ARLIB := libi2pd.a |
||||
SHLIB_CLIENT := libi2pdclient.so |
||||
ARLIB_CLIENT := libi2pdclient.a |
||||
I2PD := i2pd |
||||
GREP := fgrep |
||||
DEPS := obj/make.dep |
||||
|
||||
include filelist.mk |
||||
|
||||
USE_AESNI := yes |
||||
USE_STATIC := no |
||||
|
||||
ifeq ($(UNAME),Darwin) |
||||
DAEMON_SRC += DaemonLinux.cpp |
||||
include Makefile.osx |
||||
else ifeq ($(shell echo $(UNAME) | $(GREP) -c FreeBSD),1) |
||||
DAEMON_SRC += DaemonLinux.cpp |
||||
include Makefile.bsd |
||||
else ifeq ($(UNAME),Linux) |
||||
DAEMON_SRC += DaemonLinux.cpp |
||||
include Makefile.linux |
||||
else # win32 mingw
|
||||
DAEMON_SRC += DaemonWin32.cpp Win32/Win32Service.cpp Win32/Win32App.cpp |
||||
include Makefile.mingw |
||||
endif |
||||
|
||||
all: mk_obj_dir $(ARLIB) $(ARLIB_CLIENT) $(I2PD) |
||||
|
||||
mk_obj_dir: |
||||
@mkdir -p obj |
||||
@mkdir -p obj/Win32 |
||||
|
||||
api: mk_obj_dir $(SHLIB) $(ARLIB) |
||||
api_client: mk_obj_dir $(SHLIB) $(ARLIB) $(SHLIB_CLIENT) $(ARLIB_CLIENT) |
||||
|
||||
## NOTE: The NEEDED_CXXFLAGS are here so that CXXFLAGS can be specified at build time
|
||||
## **without** overwriting the CXXFLAGS which we need in order to build.
|
||||
## For example, when adding 'hardening flags' to the build
|
||||
## (e.g. -fstack-protector-strong -Wformat -Werror=format-security), we do not want to remove
|
||||
## -std=c++11. If you want to remove this variable please do so in a way that allows setting
|
||||
## custom FLAGS to work at build-time.
|
||||
|
||||
deps: mk_obj_dir |
||||
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) -MM *.cpp > $(DEPS) |
||||
@sed -i -e '/\.o:/ s/^/obj\//' $(DEPS) |
||||
|
||||
obj/%.o: %.cpp |
||||
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) $(CPU_FLAGS) -c -o $@ $< |
||||
|
||||
# '-' is 'ignore if missing' on first run
|
||||
-include $(DEPS) |
||||
|
||||
DAEMON_OBJS += $(patsubst %.cpp,obj/%.o,$(DAEMON_SRC)) |
||||
$(I2PD): $(DAEMON_OBJS) $(ARLIB) $(ARLIB_CLIENT) |
||||
$(CXX) -o $@ $^ $(LDLIBS) $(LDFLAGS) |
||||
|
||||
$(SHLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC)) |
||||
ifneq ($(USE_STATIC),yes) |
||||
$(CXX) $(LDFLAGS) $(LDLIBS) -shared -o $@ $^ |
||||
endif |
||||
|
||||
$(SHLIB_CLIENT): $(patsubst %.cpp,obj/%.o,$(LIB_CLIENT_SRC)) |
||||
$(CXX) $(LDFLAGS) $(LDLIBS) -shared -o $@ $^ |
||||
|
||||
$(ARLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC)) |
||||
ar -r $@ $^ |
||||
|
||||
$(ARLIB_CLIENT): $(patsubst %.cpp,obj/%.o,$(LIB_CLIENT_SRC)) |
||||
ar -r $@ $^ |
||||
|
||||
clean: |
||||
rm -rf obj |
||||
$(RM) $(I2PD) $(SHLIB) $(ARLIB) $(SHLIB_CLIENT) $(ARLIB_CLIENT) |
||||
|
||||
strip: $(I2PD) $(SHLIB_CLIENT) $(SHLIB) |
||||
strip $^ |
||||
|
||||
LATEST_TAG=$(shell git describe --tags --abbrev=0 openssl) |
||||
dist: |
||||
git archive --format=tar.gz -9 --worktree-attributes \
|
||||
--prefix=i2pd_$(LATEST_TAG)/ $(LATEST_TAG) -o i2pd_$(LATEST_TAG).tar.gz |
||||
|
||||
.PHONY: all |
||||
.PHONY: clean |
||||
.PHONY: deps |
||||
.PHONY: dist |
||||
.PHONY: api |
||||
.PHONY: api_client |
||||
.PHONY: mk_obj_dir |
||||
|
@ -1,44 +1,43 @@
@@ -1,44 +1,43 @@
|
||||
USE_WIN32_APP=yes |
||||
CXX = g++ |
||||
WINDRES = windres |
||||
CXXFLAGS = -Os -D_MT -DWIN32 -D_WINDOWS -DWIN32_LEAN_AND_MEAN |
||||
NEEDED_CXXFLAGS = -std=c++11 |
||||
BOOST_SUFFIX = -mt |
||||
INCFLAGS = -I/usr/include/ -I/usr/local/include/ |
||||
LDFLAGS = -Wl,-rpath,/usr/local/lib \
|
||||
-L/usr/local/lib \
|
||||
-L/c/dev/openssl \
|
||||
-L/c/dev/boost/lib |
||||
LDLIBS = \
|
||||
-Wl,-Bstatic -lboost_system$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lboost_date_time$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lboost_filesystem$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lboost_regex$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lboost_program_options$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lssl \
|
||||
-Wl,-Bstatic -lcrypto \
|
||||
-Wl,-Bstatic -lz \
|
||||
-Wl,-Bstatic -lwsock32 \
|
||||
-Wl,-Bstatic -lws2_32 \
|
||||
-Wl,-Bstatic -lgdi32 \
|
||||
-Wl,-Bstatic -liphlpapi \
|
||||
-static-libgcc -static-libstdc++ \
|
||||
-Wl,-Bstatic -lstdc++ \
|
||||
-Wl,-Bstatic -lpthread |
||||
|
||||
ifeq ($(USE_WIN32_APP), yes) |
||||
CXXFLAGS += -DWIN32_APP |
||||
LDFLAGS += -mwindows -s |
||||
DAEMON_RC += Win32/Resource.rc |
||||
DAEMON_OBJS += $(patsubst %.rc,obj/%.o,$(DAEMON_RC)) |
||||
endif |
||||
|
||||
ifeq ($(USE_AESNI),1) |
||||
CPU_FLAGS = -maes -DAESNI |
||||
else |
||||
CPU_FLAGS = -msse |
||||
endif |
||||
|
||||
obj/%.o : %.rc |
||||
$(WINDRES) -i $< -o $@ |
||||
|
||||
USE_WIN32_APP=yes |
||||
CXX = g++ |
||||
WINDRES = windres |
||||
CXXFLAGS = -Os -D_MT -DWIN32 -D_WINDOWS -DWIN32_LEAN_AND_MEAN |
||||
NEEDED_CXXFLAGS = -std=c++11 |
||||
BOOST_SUFFIX = -mt |
||||
INCFLAGS = -I/usr/include/ -I/usr/local/include/ |
||||
LDFLAGS = -Wl,-rpath,/usr/local/lib \
|
||||
-L/usr/local/lib \
|
||||
-L/c/dev/openssl \
|
||||
-L/c/dev/boost/lib |
||||
LDLIBS = \
|
||||
-Wl,-Bstatic -lboost_system$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lboost_date_time$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lboost_filesystem$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lboost_regex$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lboost_program_options$(BOOST_SUFFIX) \
|
||||
-Wl,-Bstatic -lssl \
|
||||
-Wl,-Bstatic -lcrypto \
|
||||
-Wl,-Bstatic -lz \
|
||||
-Wl,-Bstatic -lwsock32 \
|
||||
-Wl,-Bstatic -lws2_32 \
|
||||
-Wl,-Bstatic -lgdi32 \
|
||||
-Wl,-Bstatic -liphlpapi \
|
||||
-static-libgcc -static-libstdc++ \
|
||||
-Wl,-Bstatic -lstdc++ \
|
||||
-Wl,-Bstatic -lpthread |
||||
|
||||
ifeq ($(USE_WIN32_APP), yes) |
||||
CXXFLAGS += -DWIN32_APP |
||||
LDFLAGS += -mwindows -s |
||||
DAEMON_RC += Win32/Resource.rc |
||||
DAEMON_OBJS += $(patsubst %.rc,obj/%.o,$(DAEMON_RC)) |
||||
endif |
||||
|
||||
ifeq ($(USE_AESNI),1) |
||||
CPU_FLAGS = -maes -DAESNI |
||||
else |
||||
CPU_FLAGS = -msse |
||||
endif |
||||
|
||||
obj/%.o : %.rc |
||||
$(WINDRES) -i $< -o $@ |
||||
|
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
-----BEGIN CERTIFICATE----- |
||||
MIIBwTCCAWigAwIBAgIJAOZBC10+/38EMAkGByqGSM49BAEwZzELMAkGA1UEBhMC |
||||
QVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdp |
||||
dHMgUHR5IEx0ZDEgMB4GA1UEAwwXbWNhMi1pMnAuZmFtaWx5LmkycC5uZXQwHhcN |
||||
MTYwMzI4MjIwMjMxWhcNMjYwMzI2MjIwMjMxWjBnMQswCQYDVQQGEwJBVTETMBEG |
||||
A1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkg |
||||
THRkMSAwHgYDVQQDDBdtY2EyLWkycC5mYW1pbHkuaTJwLm5ldDBZMBMGByqGSM49 |
||||
AgEGCCqGSM49AwEHA0IABNNyfzJr/rMSUeWliVBbJHRF2+qMypOlHEZ9m1nNATVX |
||||
64OhuyuVCmbF9R3oDkcZZJQQK1ovXd/EsbAIWDI8K/gwCQYHKoZIzj0EAQNIADBF |
||||
AiEApmv2tvMwzlvPjHJG1/5aXOSjYWw2s4ETeGt4abWPQkACIBbF3RuCHuzg+KN8 |
||||
N0n9hAJztAqhRCdG3hilxF4fbVLp |
||||
-----END CERTIFICATE----- |
@ -1,4 +1,4 @@
@@ -1,4 +1,4 @@
|
||||
etc/i2pd/i2pd.conf var/lib/i2pd/i2p.conf |
||||
etc/i2pd/tunnels.conf var/lib/i2pd/tunnels.cfg |
||||
etc/i2pd/i2pd.conf var/lib/i2pd/i2pd.conf |
||||
etc/i2pd/tunnels.conf var/lib/i2pd/tunnels.conf |
||||
etc/i2pd/subscriptions.txt var/lib/i2pd/subscriptions.txt |
||||
usr/share/i2pd/certificates var/lib/i2pd/certificates |
||||
|
Loading…
Reference in new issue