Uman Shahzad
Uman Shahzad
What copyright access issue?
For proxies, please see https://github.com/ipinfo/python/issues/60
@talhahwahla let's fix up the issue this was causing and ship. Or @rm-Umar can take over.
You can simplify this with [`memmove`](https://www.man7.org/linux/man-pages/man3/memmove.3.html).
It depends; some implementations of `memmove` will check for an overlap first, and if there isn't one will delegate to `memcpy`. Example of musl libc doing this: https://git.musl-libc.org/cgit/musl/tree/src/string/memmove.c#n15
Then how is the overlap case ever going to be supported? Either brand new interfaces with the exact same code but with `memcpy -> memmove` (and there are many functions...
Same issue here, it's actually error spamming us hard. I hypothesize this has to do with the interplay between killed idle connections and the connection timeout - idle connections die,...
Should be covered by https://github.com/ipinfo/cli/pull/185
Thanks, we could do that. Putting it on the agenda.
All the other SDKs currently work this way, and it is fully overrideable so that a completely separate implementation can be provided, even a no-op one, or a persistence one...