crusader-mike
crusader-mike
I've created a trivial web server with lwan that for each POST request responds with http code 200 -- it is used for testing another system performance. Noticed that when...
I have code (simplified): ``` cxxopts::Options opts("jobsrv", "Job Server"); opts.add_options() ("w,dump-data", "write data to .json", cxxopts::value()->implicit_value("default_filename"), "filename") ("f,file", "file to process (e.g. /dir1/a.txt)", cxxopts::value()) ; opts.parse_positional(vector{ "f" }); opts.positional_help("[...]"); auto...
[Here](https://github.com/sahlberg/libnfs/blob/master/lib/libnfs-zdr.c#L280) malicious packet can lead to suprises. (depending on size of `int`, etc) [Here](https://github.com/sahlberg/libnfs/blob/master/lib/libnfs-zdr.c#L306) we will end up allocating too few bytes if size is `(uint32_t)-1` (or close) due to...
libnfs has `is_dirty` flag in "file handle", if it is set -- `close` operation will issue a `COMMIT`. Which isn't necessary when every `WRITE` returned `FILE_SYNC`. In fact, `is_dirty` is...
Following snippet fails to call `connect_cb()` and leaks related data structure: ``` static void connect_cb(rpc_context* rpc, int status, void* command_data, void *private_data) { } ... rpc_context* rpc = rpc_init_context(); int...
I was following logic in `nfs_mount()` and noticed that in `nfs3_mount_6_cb()` instead of using object attributes (if they were returned by server) an additional `GETATTR` call is issued. What is...
Hi, As I understand from cursory browsing of libnfs everything happens in eventloop (`rpc_service/rpc_timeout_scan()`) which has to be executed in current thread. Is it possible to integrate this loop with...
I.e. libFOO.so.\.\, symlinks and etc. See some details here: http://stackoverflow.com/questions/7553184/how-to-do-versioning-of-a-shared-library-in-linux
Confirm by changing [ ] to [x] below to ensure that it's a bug: - [x] I've gone though [Developer Guide](https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/welcome.html) and [API reference](http://sdk.amazonaws.com/cpp/api/LATEST/index.html) - [x] I've searched for [previous...
### Describe the bug There are multiple issues with SDK that results in it's inability to handle unusual object keys (even if they are supported by underlying platform, be that...