NativeDev

Results 11 comments of NativeDev

How about FreeBSD? ``` root@TaipanBSD:~/Git/cloud-agent # code-server --link [2022-06-25T22:08:59.219Z] info code-server 4.4.0 b088ec7adf9e17bc75215f79e21498eb40da03ed [2022-06-25T22:08:59.221Z] info Using user-data-dir ~/.local/share/code-server [2022-06-25T22:08:59.228Z] info Using config file ~/.config/code-server/config.yaml [2022-06-25T22:08:59.229Z] info HTTP server listening on...

Hello and thank you for your benevolent dictatorship. I can say that validation errors would be helpful. When trying to create a custom dialer to use TLS I was getting...

Ok, I found your newer nni_tls_dialer api based on nng_stream and I've got that communicating with my db service. So I suppose you can ignore my comment. 1. I'm kind...

Oh, one more item. Async read of the aio returned from the server is of course lightning fast so synchronous performance is not a huge deal for me considering, but...

Ok, understood. My first comment indicates that I was getting protocol error after SSL handshake when using nng_dialer_start. It is unclear how I should proceed to debug that error or...

This seems to align with what I'm working on, given that I am developing a RethinkDB client driver for which I have chosen to make use of NNG + mbedtls...

I've hacked together a Secure Transport implementation that allows me to trivially use SSLRead and SSLWrite. Given the poor documentation and scattered example snippets across SO, this was really nontrivial...

These are great answers. However, I'm talking about using sendfile for socket receive on the client side (though I don't see yet why it wouldn't also be potentially viable in...

I am aware that you can't mmap a socket. I am talking about reading directly from the buffer mmapped to the file on disk. While the man pages for sendfile...

I am definitely not speaking to another SP implementation. Again, I am using nng for a rethinkdb client driver in C, that interfaces with the RethinkDB service over TCP wrapped...