Skip to content

Commit

Permalink
port Minitor to linux
Browse files Browse the repository at this point in the history
there is a problem with obtaining the master secret for the link authentication protocol, to get around this a copy of the internal wolfssl header was copied into wolfssl so it can be accessed internally, but this is a bad workaround because wolfssl can change this file and it could break minitor
  • Loading branch information
John Bland committed Jul 22, 2022
1 parent bc8676f commit b79b808
Show file tree
Hide file tree
Showing 34 changed files with 12,599 additions and 175 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
*.swp
*build
*.o
*.a
*.deps
*.dirstamp
depcomp
aclocal.m4
autom4te.cache/
install-sh
compile
config.log
config.status
Makefile.in
configure~
components/wifi_connect/include/wifi_connect.h
Empty file added AUTHORS
Empty file.
339 changes: 339 additions & 0 deletions COPYING

Large diffs are not rendered by default.

Empty file added ChangeLog
Empty file.
Empty file added INSTALL
Empty file.
21 changes: 21 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
noinst_LIBRARIES = libminitor.a
libminitor_a_SOURCES = \
src/cell.c \
src/circuit.c \
src/config.c \
src/connections.c \
src/consensus.c \
src/core.c \
src/encoding.c \
src/minitor.c \
src/onion_service.c \
src/port.c \
src/custom_sc.c \
src/structures/circuit.c \
src/structures/connections.c \
src/structures/consensus.c \
src/structures/onion_service.c \
src/models/relay.c \
src/models/revision_counter.c
libminitor_a_CFLAGS = -Werror-implicit-function-declaration
libminitor_a_LDFLAGS = -static
Empty file added NEWS
Empty file.
Loading

0 comments on commit b79b808

Please sign in to comment.