Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | adding old notes filesHEADmaster | bnewbold | 2022-06-27 | 2 | -0/+120 |
| | |||||
* | update README with install instructions | bnewbold | 2017-02-22 | 1 | -4/+9 |
| | |||||
* | remove 'shutdown' from command list (unimplemented) | bnewbold | 2017-02-22 | 1 | -1/+0 |
| | |||||
* | flesh out Makefile with install target | bnewbold | 2017-02-22 | 1 | -0/+17 |
| | |||||
* | add a crude bash test file | bnewbold | 2017-02-22 | 1 | -0/+36 |
| | |||||
* | update dependencies | bnewbold | 2017-02-18 | 2 | -77/+111 |
| | |||||
* | rustfmt (mostly) | bnewbold | 2017-02-17 | 2 | -66/+98 |
| | |||||
* | update TODO | bnewbold | 2017-02-17 | 1 | -0/+5 |
| | |||||
* | update to v0.2.0 | bnewbold | 2016-10-17 | 2 | -2/+2 |
| | |||||
* | add TODO list | bnewbold | 2016-10-17 | 1 | -0/+19 |
| | |||||
* | add EINHORN_SOCK_PATH to child envs | bnewbold | 2016-10-17 | 1 | -0/+1 |
| | |||||
* | small tweaks to man pages | bnewbold | 2016-10-17 | 3 | -7/+20 |
| | |||||
* | switch to direct gh-pages | bnewbold | 2016-10-16 | 1 | -2/+1 |
| | |||||
* | chan-signal PR accepted | bnewbold | 2016-10-16 | 3 | -17/+6 |
| | |||||
* | update docs | bnewbold | 2016-10-16 | 5 | -36/+149 |
| | |||||
* | fix options text | bnewbold | 2016-10-15 | 1 | -3/+3 |
| | |||||
* | rustfmt (partially) | bnewbold | 2016-10-14 | 2 | -97/+131 |
| | |||||
* | apply (most) clippy recommendations | bnewbold | 2016-10-14 | 2 | -32/+29 |
| | |||||
* | cleanup libs; switch to slog logging | bnewbold | 2016-10-13 | 4 | -173/+117 |
| | |||||
* | add ENV var dropping feature | bnewbold | 2016-10-12 | 1 | -1/+8 |
| | |||||
* | clean up more robustly (child reaping) | bnewbold | 2016-10-12 | 1 | -2/+4 |
| | |||||
* | fix 'help' command | bnewbold | 2016-10-12 | 2 | -4/+9 |
| | |||||
* | yooje refactor | bnewbold | 2016-10-12 | 1 | -120/+172 |
| | |||||
* | finish options in manpage | bnewbold | 2016-10-12 | 1 | -11/+14 |
| | |||||
* | docs in progress | bnewbold | 2016-10-12 | 2 | -3/+38 |
| | |||||
* | refactor code around a small amount | bnewbold | 2016-10-12 | 1 | -9/+13 |
| | |||||
* | more einhyrningsinsctl work | bnewbold | 2016-10-12 | 2 | -21/+94 |
| | |||||
* | fill in remaining parts of actions/commands | bnewbold | 2016-10-12 | 1 | -9/+56 |
| | |||||
* | handle many more signals | bnewbold | 2016-10-12 | 1 | -12/+34 |
| | |||||
* | shell help page | bnewbold | 2016-10-12 | 1 | -1/+14 |
| | |||||
* | add version flags and command | bnewbold | 2016-10-12 | 2 | -2/+20 |
| | |||||
* | partially working shell command | bnewbold | 2016-10-12 | 4 | -4/+247 |
| | |||||
* | experimental url decode stuff | bnewbold | 2016-10-11 | 3 | -4/+59 |
| | |||||
* | work in progress on control socket | bnewbold | 2016-10-11 | 4 | -10/+197 |
| | |||||
* | more work in progress | bnewbold | 2016-10-11 | 3 | -22/+68 |
| | |||||
* | more signal handlers | bnewbold | 2016-10-11 | 1 | -6/+36 |
| | |||||
* | refactor of Offspring+brood code | bnewbold | 2016-10-11 | 1 | -47/+122 |
| | |||||
* | rip out RPC stuff for now | bnewbold | 2016-10-10 | 1 | -5/+1 |
| | |||||
* | more signal handling | bnewbold | 2016-10-10 | 1 | -11/+11 |
| | |||||
* | add ipv4/ipv6 forcing; nonblock and reuse socket opts | bnewbold | 2016-10-10 | 1 | -10/+52 |
| | |||||
* | use logging in python example | bnewbold | 2016-10-09 | 1 | -5/+9 |
| | |||||
* | upate python example with KeyboardInterrupt catching | bnewbold | 2016-10-09 | 3 | -14/+59 |
| | |||||
* | more refactoring progress | bnewbold | 2016-10-09 | 3 | -28/+87 |
| | |||||
* | split refs from README | bnewbold | 2016-10-09 | 2 | -9/+11 |
| | |||||
* | start refactoring to chan-signals | bnewbold | 2016-10-09 | 3 | -63/+204 |
| | |||||
* | basic/naive signal handling | bnewbold | 2016-10-03 | 1 | -0/+45 |
| | | | | | | | | | | The goal here was to hook Ctrl-C and send USR2 signal to childred instead. Turns out this is doesn't work easily because Ctrl-C is sent to the entire process group, not just the top running process. Making this work would require either masking SIGINT in the childred (children might change this) or mucking with process groups, both of which are "meh". But, unsafe code, woooo! | ||||
* | start addings refs to README | bnewbold | 2016-10-03 | 1 | -0/+9 |
| | |||||
* | simple python3 http example script | bnewbold | 2016-10-03 | 1 | -0/+40 |
| | |||||
* | basic file descriptor passing | bnewbold | 2016-10-03 | 3 | -10/+85 |
| | |||||
* | more skeleton code | bnewbold | 2016-09-27 | 3 | -48/+36 |
| |