Lev Walkin
Lev Walkin
Sean, for simplicity, just forget about deallocating memory in the _compiler_. Also, I keep my branch after yours (had to modify some things in it), so when you're done, I'll...
Please address the `make check` failures. A glaring one: https://github.com/vlm/asn1c/pull/9#issuecomment-606239
Yes, it is hard. It is, in fact, theoretically hard. The bison parses the context-free grammars, whereas parsing the "different kind of value processor" moves the problem into a "context-sensitive"...
The "keeping things that start with { and end with} to be TOK_unparsed" is something I'd rather avoid. It will break many thing and put ourselves deeper into a tar...
Yes, I confused the type and value specs in the first paragraph. Your understanding is correct.
102 — 106
I'd recommend disabling setting LINGER to 0, and create some new function that sets some flag on a socket which would make it send RSTs. Something like a new flag...
Can I use tcp_close() on btls sockets?
This does not make this too much sense. The atachable protocols approach should allow some basic signalling to be applicable, unmodified, to the whole class of protocols (such as messaging,...
Since there's no btls_close() now, can I use btls_detach? I mean, does this seem technically correct at the moment: ``` void my_close(int fd, bool tls_used, int64_t deadline) { if(tls_used) {...