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
| /** | |
| * @file mediadev.c Media device | |
| * | |
| * Copyright (C) 2010 - 2018 Creytiv.com | |
| */ | |
| #include <re.h> | |
| #include <baresip.h> | |
| static void destructor(void *data) |
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/modules/x11/x11.c b/modules/x11/x11.c | |
| index a11148a..c101816 100644 | |
| --- a/modules/x11/x11.c | |
| +++ b/modules/x11/x11.c | |
| @@ -160,6 +160,7 @@ static int x11_reset(struct vidisp_st *st, const struct vidsz *sz) | |
| XGCValues gcv; | |
| size_t bufsz, pixsz; | |
| int err = 0; | |
| + bool try_shm; | |
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
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/addr.o | |
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/auth.o | |
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/contact.o | |
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/cseq.o | |
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/ctrans.o | |
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/dialog.o | |
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/keepalive.o | |
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/keepalive_udp.o | |
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/msg.o | |
| CC /Users/alfredh/git/baresip-ios/build/aarch64/libre/sip/reply.o |
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_tls.h b/include/re_tls.h | |
| index 319d601c..d4f6d041 100644 | |
| --- a/include/re_tls.h | |
| +++ b/include/re_tls.h | |
| @@ -56,6 +56,7 @@ const char *tls_cipher_name(const struct tls_conn *tc); | |
| int tls_set_ciphers(struct tls *tls, const char *cipherv[], size_t count); | |
| int tls_set_servername(struct tls_conn *tc, const char *servername); | |
| int tls_set_verify_server(struct tls_conn *tc, const char *host); | |
| +bool tls_verify_peer_san(const struct tls_conn *tc, const char *host); | |
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/modules/auloop/auloop.c b/modules/auloop/auloop.c | |
| index 8028d69..5ec5dce 100644 | |
| --- a/modules/auloop/auloop.c | |
| +++ b/modules/auloop/auloop.c | |
| @@ -42,7 +42,14 @@ struct audio_loop { | |
| bool started; | |
| uint64_t n_read; | |
| + uint64_t n_read_count; | |
| uint64_t n_write; |
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
| ./baresip -f /Users/alfredh/.baresip-gst -v | |
| baresip v0.6.3 Copyright (C) 2010 - 2019 Alfred E. Heggestad et al. | |
| Local network address: IPv4=en0|10.0.1.8 | |
| ui: stdio | |
| opus: fmtp="stereo=0;sprop-stereo=0;maxaveragebitrate=64000;useinbandfec=1" | |
| aucodec: opus/48000/1 | |
| aucodec: PCMU/8000/1 | |
| aucodec: PCMA/8000/1 | |
| auplay: coreaudio | |
| ausrc: coreaudio |
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
| T 10.0.1.8:64444 -> 91.121.30.149:5060 [AP] #20 | |
| REGISTER sip:sip.antisip.com SIP/2.0. | |
| Via: SIP/2.0/TCP 10.0.1.8:64442;branch=z9hG4bK404f8c353afdb62d;rport. | |
| Contact: <sip:alfredh2-0x7fde1b61c650@10.0.1.8:64442;transport=tcp>;expires=60;+sip.instance="<urn:uuid:bb2fe713-df57-403b-eec0-64c433aedd09>";+sip.ice. | |
| Max-Forwards: 70. | |
| Route: <sip:sip.antisip.com;transport=tcp;lr>. | |
| To: <sip:alfredh2@sip.antisip.com>. | |
| From: "Anti Alf" <sip:alfredh2@sip.antisip.com>;tag=4164371e3f5b8fda. | |
| Call-ID: 112d5b617cf345e1. | |
| CSeq: 53513 REGISTER. |
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_sip.h b/include/re_sip.h | |
| index 5a011e5..5f5dd3e 100644 | |
| --- a/include/re_sip.h | |
| +++ b/include/re_sip.h | |
| @@ -16,6 +16,9 @@ enum sip_transp { | |
| SIP_TRANSP_UDP = 0, | |
| SIP_TRANSP_TCP, | |
| SIP_TRANSP_TLS, | |
| + SIP_TRANSP_WS, | |
| + SIP_TRANSP_WSS, |
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/reg.c b/src/reg.c | |
| index 198164c..874a6aa 100644 | |
| --- a/src/reg.c | |
| +++ b/src/reg.c | |
| @@ -48,6 +48,8 @@ static int sipmsg_af(const struct sip_msg *msg) | |
| case SIP_TRANSP_TCP: | |
| case SIP_TRANSP_TLS: | |
| + case SIP_TRANSP_WS: | |
| + case SIP_TRANSP_WSS: |
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/mk/modules.mk b/mk/modules.mk | |
| index f5487f9..026c140 100644 | |
| --- a/mk/modules.mk | |
| +++ b/mk/modules.mk | |
| @@ -65,7 +65,7 @@ USE_L16 := 1 | |
| ifneq ($(OS),win32) | |
| USE_AAC := $(shell [ -f $(SYSROOT)/include/fdk-aac/FDK_audio.h ] || \ | |
| - [ -f $(SYSROOT)/local/include/fdk-aac/FDK_audio.h ] || \ | |
| + [ -f $(SYSROOT_LOCAL)/include/fdk-aac/FDK_audio.h ] || \ |