This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
OlderNewer