diff options
author | Luca Deri <deri@ntop.org> | 2024-04-12 19:47:24 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2024-04-12 19:50:04 +0200 |
commit | b83eb7c7a2af62eee3187ca92b6f403f21b8d9c0 (patch) | |
tree | 57f483c8eef99ea5c89eccfb01156a0261a51096 /example/Makefile.in | |
parent | 31de94ba1209c95c856236c15fd2765aa4db8f3f (diff) |
Implemented STUN peer_address, relayed_address, response_origin, other_address parsing
Added code to ignore invalid STUN realm
Extended JSON output with STUN information
Diffstat (limited to 'example/Makefile.in')
-rw-r--r-- | example/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/example/Makefile.in b/example/Makefile.in index 391cfe28c..06e8958b5 100644 --- a/example/Makefile.in +++ b/example/Makefile.in @@ -1,6 +1,9 @@ AR=@AR@ CC=@CC@ CXX=@CXX@ +ifneq ($(OS),Windows_NT) +OS := $(shell uname) +endif ifeq ($(OS),Darwin) CC=clang -fno-color-diagnostics endif |