Ambroz Bizjak
Ambroz Bizjak
Hi, Thanks for using my software. However there is currently no way to stop a movement, but I can possibly implement that. - The software will currently always execute the...
`_res` should be defined in ``, it is part of the resolver API (man res_init). I don't know why it's not getting defined in your case. If you don't need...
It's not supported in this project. It can probably be coded by utilizing the iOS VPN API. I can't offer any help with Apple support.
Not all SOCKS servers support UDP and SOCKS UDP performance is often subpar. The existing solution is to do it through a custom TCP protocol with a helper program on...
Hi, I hope http://www.aprinter.eu/ still works, this site will let you configure firmware in GUI and will build it for you. Otherwise there are instructions in the README for how...
The software is not ported yet to any LPC platform. The biggest issue with porting is that they do not have an EEPROM, which is normally used by Aprinter to...
On the other hand if one is to manually wire an SPI EEPROM, then it is a much easier porting target. Of course functionality would still be limited by the...
Hi, lwIP needs us to return ERR_ABRT from the listener callback if we have tcp_abort'ed the client. If we are not very careful to do that, lwIP could crash or...
On the other hand I suppose the code could be changed to just do the minimum necessary in listener_accept_func, instead of running event loop processing, i.e. no SYNC_COMMIT and related...
Ah, I think I remember, generally the pattern is that within a lwIP callback I directly run event loop jobs that have resulted from whatever actions were just started (e.g....