InterLinked1
InterLinked1
> Compile fails on newer kernels due to better fortification of memcpy calls. > > ``` > In function 'strncat', > inlined from 'dahdi_ioctl_get_version' at dahdi-linux-3.4.0/drivers/dahdi/dahdi-base.c:5405:3: > ./include/linux/fortify-string.h:114:33: error: '__builtin_memcpy'...
> I found this issue when trying to build DAHDI on Linux 6.12 with GCC 14 and fortify headers. It probably won't trigger an error without using fortify headers. That...
> Set `CONFIG_FORTIFY_SOURCE=y` in your kernel `.config`, see also https://github.com/torvalds/linux/blob/dee264c16a6334dcdbea5c186f5ff35f98b1df42/security/Kconfig.hardening#L209 Thanks, I still haven't been able to reproduce this, with either gcc 13 or gcc 15. I'm trying against `linux-next`...
> I noticed this error when building for a MIPS32-based embedded platform, which obviously changes `sizeof(size_t)` as well as `sizeof()` other basic types compared to x86_64. I can share the...
@gtjoseph I see why the test is broken and will fix that, but did you find an actual issue with the functionality? I can't replicate your described issue: ``` [2024-10-01...
> @InterLinked1 It's been a while but what is `InbandDial()`? One of your apps? Does it do something different than `Dial()`? It's just a wrapper I use around `Dial`, there's...
> @InterLinked1 Well, I have a dead simple sipp scenario that waits for an INVITE, then waits 10 seconds before responding with a 100-Trying. When I call that scenario with...
> @InterLinked1 Here you go... > > Dialplan: > > ``` > exten = 9999,1,NoOp(Local ${EXTEN} ${HINT} ${CALLERID(num)}) > same = n,Dial(PJSIP/${EXTEN}@alice,10^3) > same = n,Hangup() > ``` > >...
> @InterLinked1 Here you go... > > Dialplan: > > ``` > exten = 9999,1,NoOp(Local ${EXTEN} ${HINT} ${CALLERID(num)}) > same = n,Dial(PJSIP/${EXTEN}@alice,10^3) > same = n,Hangup() > ``` > >...
> @InterLinked1 you need to add `aors = alice` to the endpoint. Thanks... it's been a while since I've manually configured a PJSIP endpoint :) I figured out what's going...