-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
34 changed files
with
12,599 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.