[Assignment-7] working implementation of untrusted
Some checks are pending
Latex Build / build-latex (Assignment 4 - Protokollsicherheit (Praxis)) (push) Waiting to run
Latex Build / build-latex (Assignment 5 - Software Security - Teil 1) (push) Waiting to run
Latex Build / build-latex (Assignment 6 - Software Security - Teil 2) (push) Waiting to run
Latex Build / build-latex (Assignment 4 - Protokollsicherheit (Praxis)) (pull_request) Successful in 1m4s
Latex Build / build-latex (Assignment 5 - Software Security - Teil 1) (pull_request) Successful in 1m1s
Latex Build / build-latex (Assignment 6 - Software Security - Teil 2) (pull_request) Successful in 1m0s

This commit is contained in:
Paul Zinselmeyer 2024-07-06 14:54:54 +02:00
parent d8c1a06c4c
commit 10614a4392
Signed by: pfzetto
GPG key ID: B471A1AF06C895FD
8 changed files with 1126 additions and 208 deletions

View file

@ -3,6 +3,7 @@
#include "intermediary.h"
#include "proxy.h"
#include "proxysetup.h"
#include "util.h"
@ -19,6 +20,8 @@ int main(int argc, char** argv) {
handle_intermediary(argc-2, argv+2);
else if (strcmp(command, "proxy")==0)
handle_proxy(argc-2, argv+2);
else if (strcmp(command, "proxysetup")==0)
handle_proxysetup(argc-2, argv+2);
else
syntax_exit();
}