chrysn

Results 314 issues of chrysn

Even when the server puts a trailing slash at a directory in the link (which eg. nginx and Python3's http.server do), httpdirfs still goes for the slash-less version. Paraphrasing a...

enhancement

For use cases like media (think [performous](https://performous.org/), though I haven't made sure it's really beneficial there) it would be convenient to have the persistent caching store directory listings (maybe including...

enhancement

A CoAP server has the choice to either send the response message to a confirmable request as a piggy-backed response (along with the ACK), or as a separate message. When...

enhancement

When used as a CoAP client, the token is always empty, and the message ID is not set. This does not cause practical problems as long as they are sent...

enhancement

With the "delegated credentials" specification ([draft-ietf-tls-subcerts](https://datatracker.ietf.org/doc/draft-ietf-tls-subcerts/)) approved for publication, it would be great to have a test around that indicates to the user whether its client supports delegated credentials (or...

This does not help towards the support of C11 atomics, but ensures that the existing error messages about the trouble with them get shown: * In VisitQualType at latest, where...

Whenever c2rust encounters stdatomic.h in my setup, it fails irrecoverably with messages like this: ``` warning: Missing type 94827692380208 for node: AstNode { tag: TagTypedefDecl, children: [], loc: SrcSpan {...

I Would Be Great If C2Rust could just translate C11 atomics (`extern _Atomic int foo; foo = 4;`). While personally I prefer to go through the explicitly ordering functions (`atomic_fetch_and_explicity`...

enhancement

The RIOT-OS code base I'm translating as part of the efforts around https://github.com/rust-lang/rust-bindgen/issues/1344 contains a function like ```c static inline kernel_pid_t thread_getpid(void) { extern volatile kernel_pid_t sched_active_pid; return sched_active_pid; }...

The FAQ are explicit about not supporting cross-transpilation, but I'd like to use that and work on fixing it (primarily to get https://github.com/rust-lang/rust-bindgen/issues/1344 working); I'd appreciate a bit of high-level...

enhancement