Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add packaging scripts for Meson | Přemysl Janouch | 2017-04-30 | 4 | -0/+69 |
| | | | | | It probably doesn't belong here but I don't feel like creating another repository for this either yet. | ||||
* | Fix the WebSocket frame parser | Přemysl Janouch | 2017-02-06 | 1 | -3/+2 |
| | |||||
* | Fix and update LICENSE | Přemysl Janouch | 2017-02-03 | 6 | -17/+11 |
| | |||||
* | Travis CI: brevify notifications | Přemysl Janouch | 2017-02-03 | 1 | -0/+6 |
| | |||||
* | Fixes to the previous batch of commits | Přemysl Janouch | 2017-01-23 | 2 | -7/+5 |
| | |||||
* | Rename strv_add*() to strv_append*() | Přemysl Janouch | 2017-01-23 | 3 | -24/+24 |
| | | | | Consistency. | ||||
* | Rename str_ensure_space() to str_reserve() | Přemysl Janouch | 2017-01-23 | 2 | -5/+5 |
| | | | | Let's not invent our own terminology. | ||||
* | join_strv() -> strv_join(), take a string argument | Přemysl Janouch | 2017-01-23 | 1 | -2/+2 |
| | |||||
* | Rename "struct str_vector" to "struct strv" | Přemysl Janouch | 2017-01-23 | 4 | -80/+80 |
| | | | | Short names for things used often. | ||||
* | Add a library with TUI helpers | Přemysl Janouch | 2017-01-23 | 3 | -0/+301 |
| | |||||
* | Add ARRAY convenience macros | Přemysl Janouch | 2017-01-23 | 1 | -0/+17 |
| | | | | Because dynamically allocated arrays in C are a pain. | ||||
* | MPD client: fix resource leak | Přemysl Janouch | 2017-01-18 | 1 | -1/+5 |
| | |||||
* | Add some consts to function arguments | Přemysl Janouch | 2016-10-23 | 1 | -9/+9 |
| | |||||
* | MPD client: support command_list_ok_begin | Přemysl Janouch | 2016-10-13 | 1 | -4/+12 |
| | |||||
* | Import an MPD client interface | Přemysl Janouch | 2016-10-11 | 2 | -2/+653 |
| | |||||
* | Make error_set() return NULL for convenience | Přemysl Janouch | 2016-10-10 | 2 | -37/+19 |
| | | | | This often eliminates the need for a block where one line is enough. | ||||
* | Merge cstr_split() and cstr_split_ignore_empty() | Přemysl Janouch | 2016-10-09 | 2 | -21/+8 |
| | |||||
* | Allow ignoring params in http_parse_media_type() | Přemysl Janouch | 2016-10-09 | 1 | -3/+5 |
| | |||||
* | Add some constness to str_map methods | Přemysl Janouch | 2016-10-05 | 1 | -3/+3 |
| | |||||
* | Fix a comment | Přemysl Janouch | 2016-10-04 | 1 | -1/+1 |
| | |||||
* | Use CLOCK_MONOTONIC_RAW for timers if available | Přemysl Janouch | 2016-10-04 | 1 | -1/+4 |
| | | | | Should make timers work more precisely on Linux. | ||||
* | Add config_read_from_file() | Přemysl Janouch | 2016-10-01 | 1 | -0/+21 |
| | |||||
* | Add socket_io_*() functions | Přemysl Janouch | 2016-10-01 | 1 | -0/+71 |
| | |||||
* | Simplify resolve_relative_filename_generic() | Přemysl Janouch | 2016-10-01 | 1 | -14/+6 |
| | |||||
* | Fix Travis CI notifications | Přemysl Janouch | 2016-03-14 | 1 | -1/+1 |
| | |||||
* | Add poller_post_fork() for *BSD kqueue | Přemysl Janouch | 2016-03-13 | 1 | -2/+16 |
| | |||||
* | Update README | Přemysl Janouch | 2016-03-13 | 1 | -1/+7 |
| | |||||
* | Fix config schema application | Přemysl Janouch | 2016-02-01 | 1 | -2/+3 |
| | |||||
* | Allow fsync() to fail on special files | Přemysl Janouch | 2016-01-26 | 1 | -1/+2 |
| | |||||
* | Silence warning | Přemysl Janouch | 2016-01-26 | 1 | -1/+3 |
| | |||||
* | Add lock_pid_file() | Přemysl Janouch | 2016-01-17 | 1 | -0/+47 |
| | |||||
* | Get rid of struct typedefs | Přemysl Janouch | 2016-01-17 | 1 | -9/+6 |
| | |||||
* | Cleanup | Přemysl Janouch | 2016-01-16 | 1 | -13/+6 |
| | |||||
* | Shuffle code | Přemysl Janouch | 2016-01-16 | 1 | -90/+88 |
| | |||||
* | Don't crash when new threads can't be created | Přemysl Janouch | 2016-01-16 | 1 | -5/+59 |
| | |||||
* | Use a more generic API in write_file{,_safe}() | Přemysl Janouch | 2016-01-15 | 1 | -5/+7 |
| | |||||
* | Make writing files a bit safer | Přemysl Janouch | 2016-01-13 | 1 | -3/+19 |
| | | | | Especially configuration files. | ||||
* | Allow arbitrary configuration keys | Přemysl Janouch | 2016-01-09 | 1 | -2/+22 |
| | | | | | So that if the application decides to use them, neither writing nor loading of the configuration doesn't brutally fail. | ||||
* | Copy user_data in config_item_set_from | Přemysl Janouch | 2016-01-09 | 1 | -0/+1 |
| | | | | | | So that the validation callback can make use of it. This is analogous to the change in schema application. | ||||
* | Fix usage of freeaddrinfo() in connector | Přemysl Janouch | 2016-01-04 | 1 | -1/+2 |
| | |||||
* | Fix the kqueue poller backend | Přemysl Janouch | 2016-01-04 | 1 | -3/+3 |
| | |||||
* | Fix build of tests under BSD | Přemysl Janouch | 2016-01-04 | 1 | -4/+19 |
| | |||||
* | Add a test for connector | Přemysl Janouch | 2016-01-03 | 1 | -0/+161 |
| | |||||
* | Fix some leaks in tests | Přemysl Janouch | 2016-01-03 | 1 | -9/+9 |
| | |||||
* | Update copyright years | Přemysl Janouch | 2016-01-03 | 3 | -3/+3 |
| | |||||
* | Add a test for the async framework | Přemysl Janouch | 2016-01-03 | 1 | -0/+95 |
| | |||||
* | Add a CONTAINER_OF macro | Přemysl Janouch | 2016-01-03 | 1 | -0/+3 |
| | |||||
* | Compile tests with pthreads support | Přemysl Janouch | 2016-01-03 | 2 | -2/+28 |
| | |||||
* | Rewrite connector to use asynchronous getaddrinfo | Přemysl Janouch | 2016-01-03 | 1 | -50/+89 |
| | |||||
* | Add asynchronous getnameinfo() | Přemysl Janouch | 2016-01-02 | 1 | -0/+64 |
| |