Skip to content

Instantly share code, notes, and snippets.

View alfredh's full-sized avatar

Alfred E. Heggestad alfredh

View GitHub Profile
diff --git a/include/re_ice.h b/include/re_ice.h
index 6c72856..adeaffd 100644
--- a/include/re_ice.h
+++ b/include/re_ice.h
@@ -24,12 +24,6 @@ enum ice_compid {
ICE_COMPID_RTCP = 2
};
-/** ICE Nomination */
-enum ice_nomination {
@alfredh
alfredh / re-tlsstack.patch
Created August 21, 2020 16:39
TLS stack for libre
diff --git a/Makefile b/Makefile
index 2680b7c..bff75d7 100644
--- a/Makefile
+++ b/Makefile
@@ -33,6 +33,7 @@ MODULES += aes srtp
MODULES += odict
MODULES += json
MODULES += rtmp
+MODULES += cert
diff --git a/src/main/main.c b/src/main/main.c
index 78a47e3..7858aa9 100644
--- a/src/main/main.c
+++ b/src/main/main.c
@@ -115,6 +115,7 @@ struct re {
#ifdef HAVE_PTHREAD
pthread_mutex_t mutex; /**< Mutex for thread synchronization */
pthread_mutex_t *mutexp; /**< Pointer to active mutex */
+ pthread_t tid;
#endif