[Assignment-7] added embedded device to main.c; adjusted parameter parsing

This commit is contained in:
Sascha Tommasone 2024-07-06 17:51:58 +02:00 committed by saschato
parent 83d943940c
commit 6a1ee981e1
2 changed files with 3 additions and 5 deletions

View file

@ -22,6 +22,8 @@ int main(int argc, char** argv) {
handle_proxy(argc-2, argv+2);
else if (strcmp(command, "proxysetup")==0)
handle_proxysetup(argc-2, argv+2);
else if (strcmp(command, "embedded")==0)
handle_proxysetup(argc-2, argv+2);
else
syntax_exit();
}