Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-05 | Fix every include path changed in the previous commit (automated) | Nick Mathewson | |
I am very glad to have written this script. | |||
2018-07-01 | Remove system headers from or.h | Nick Mathewson | |
2018-06-28 | Extract process-management functionality into a new lib/process | Nick Mathewson | |
Note that procmon does *not* go here, since procmon needs to integrate with the event loop. | |||
2018-06-20 | Run rectify_include_paths.py | Nick Mathewson | |
2018-06-20 | Update copyrights to 2018. | Nick Mathewson | |
2017-09-15 | Run our #else/#endif annotator on our source code. | Nick Mathewson | |
2017-05-19 | mingw fix: avoid "unused var" warning. | Nick Mathewson | |
2017-03-15 | Run the copyright update script. | Nick Mathewson | |
2016-02-27 | Update the copyright year. | Nick Mathewson | |
2015-12-17 | Fix unused variable errors | cypherpunks | |
2015-12-17 | Return 77 means "skipped" | Nick Mathewson | |
2015-12-17 | Conform to the type signature of setsockopt(2) | cypherpunks | |
According to the POSIX standard the option value is a pointer to void and the option length a socklen_t. The Windows implementation makes the option value be a pointer to character and the option length an int. Casting the option value to a pointer to void conforms to the POSIX standard while the implicit cast to a pointer to character conforms to the Windows implementation. The casts of the option length to the socklen_t data type conforms to the POSIX standard. The socklen_t data type is actually an alias of an int so it also conforms to the Windows implementation. | |||
2015-12-17 | Use a Windows specific socket error code | cypherpunks | |
2015-12-17 | Do not run switch_id test on Windows | cypherpunks | |
2015-12-15 | Add unit tests for switch_id(), including tests for capabilities | Nick Mathewson | |