Age | Commit message (Expand) | Author |
2021-06-12 | Expanded all instances of `did_fail`, and | mrb0nk500 |
2021-06-12 | Removed `did_fail`, and `did_fail_reason`, and added | mrb0nk500 |
2021-06-12 | Replaced all log messages with the macros from | mrb0nk500 |
2021-06-12 | Created `macros.h`. | mrb0nk500 |
2021-06-11 | Replace call to `malloc()` with call to `calloc()` in | mrb0nk500 |
2021-06-11 | Replace `!` with `== 0` for all calls to | mrb0nk500 |
2021-06-11 | Remove unneeded call to `memset()` in `make_str()`. | mrb0nk500 |
2021-06-11 | Change `port` from an int to a string, and move the | mrb0nk500 |
2021-06-11 | Added a test config file. | mrb0nk500 |
2021-06-11 | Added failure reasons to all the failure log messages | mrb0nk500 |
2021-06-10 | Changed `fd` to a `const int`, and added a failed | mrb0nk500 |
2021-06-10 | Fixed a typo in `init_socket()`. | mrb0nk500 |
2021-06-10 | Finished `init_socket()`. | mrb0nk500 |
2021-06-10 | Added the include for `netdb.h`. | mrb0nk500 |
2021-06-10 | Fixed a bug in `parse_config()` that was caused by not | mrb0nk500 |
2021-06-10 | Added the `cleanup()`, and `cleanup_config()` | mrb0nk500 |
2021-06-10 | Added the `make_str()` function. | mrb0nk500 |
2021-06-09 | Fixed segfault in `read_file()` that occured whenever | mrb0nk500 |
2021-06-09 | Added the socket, and network includes. | mrb0nk500 |
2021-06-09 | Started work on adding the socket initialization code. | mrb0nk500 |
2021-06-09 | Moved the main loop into a separate function. | mrb0nk500 |
2021-06-09 | Move the main loop code into an if statement. | mrb0nk500 |
2021-06-08 | Fixed a typo in `init_config()`. | mrb0nk500 |
2021-06-08 | Include `config.h` in `pullreqd.c`. | mrb0nk500 |
2021-06-08 | Added the config file initialization code. | mrb0nk500 |
2021-06-08 | Added the `init_config()` function. | mrb0nk500 |
2021-06-08 | Added the `done` flag. | mrb0nk500 |
2021-06-08 | Treat `TYPE_BOOL` the same as `TYPE_INT`. | mrb0nk500 |
2021-06-08 | Remove the `b` member from the `config_val` union. | mrb0nk500 |
2021-06-08 | Removed unnecessary comment in `config_opts`. | mrb0nk500 |
2021-06-07 | Fixed a bug with offsets being handled improperly in | mrb0nk500 |
2021-06-07 | Fixed a segfault in `parse_config()`. | mrb0nk500 |
2021-06-07 | Fixed a segfault bug in `get_line()`. | mrb0nk500 |
2021-06-07 | Fixed a typo, and replaced a `NULL` in the offset of | mrb0nk500 |
2021-06-07 | Removed the casts to `long` in `parse_option_value()`. | mrb0nk500 |
2021-06-07 | Fixed a bug in one of the checks in `read_file()`. | mrb0nk500 |
2021-06-07 | Added the `set_config_opt()` function. | mrb0nk500 |
2021-06-07 | Added the `config` struct. | mrb0nk500 |
2021-06-07 | Replace `func` in config_opt with `offset`. | mrb0nk500 |
2021-06-06 | Moved `TYPE_NONE` to the start of `config_type`, and | mrb0nk500 |
2021-06-06 | Added the config option value parser. | mrb0nk500 |
2021-06-06 | Added a loop for finding a valid config option. | mrb0nk500 |
2021-06-06 | Added a NULL entry to the end of `config_opts`. | mrb0nk500 |
2021-06-06 | Added a new union called `config_val`. | mrb0nk500 |
2021-06-05 | Fixed a bug, and typo in the `strtok_r()` call in the | mrb0nk500 |
2021-06-05 | Replace `find_line()` with `get_line()`. | mrb0nk500 |
2021-06-05 | Move the config option stuff into `config.h`. | mrb0nk500 |
2021-06-05 | Added the typedefs for the config option types. | mrb0nk500 |
2021-06-05 | Rename var to func, and change all the variables to | mrb0nk500 |
2021-06-05 | Fixed typo in config option format comment. | mrb0nk500 |