From 5b986a65378d73aab8b2719fc6db96b9338c20d3 Mon Sep 17 00:00:00 2001 From: cozis Date: Tue, 31 Oct 2023 16:12:41 +0100 Subject: [PATCH] gitignore update --- .gitignore | 12 ++---------- README.md | 4 +++- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 2027f10..8de3114 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,2 @@ -*.pcapng -loop2 -loop2.exe -3p/lib/* -3p/src/* -3p/include/* -build -*.gcov -*.gcno -*.gcda \ No newline at end of file +out/* +obj/* \ No newline at end of file diff --git a/README.md b/README.md index 81ea565..f8870e4 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,9 @@ make You'll need both `make` and `cmake` for it to work. If all goes well, you'll find the library files `libtuntap.a`, `libmicrotcp.a` and header files `tuntap.h`, `tuntap-export.h`, `microtcp.h` in `out/`. ## Usage -MicroTCP's uses the usual socket interface any network programmer is familiar with, the main difference being you need to esplicitly instanciate the network stack and pass its handle around. Without further ado, here's a simple echo server that shows the basic usage: +MicroTCP's uses the usual socket interface any network programmer is familiar with, the main difference being you need to explicitly instanciate the network stack and pass its handle around. + +Here's a simple echo server that shows the basic usage: ```c #include