Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | protocol/Result: move current_command to class Response | Max Kellermann | 2015-08-14 | 5 | -21/+13 | |
| | ||||||
* | protocol/Result: move command_list_num to class Response | Max Kellermann | 2015-08-14 | 5 | -9/+11 | |
| | ||||||
* | protocol/Result: move error code to class Response | Max Kellermann | 2015-08-14 | 3 | -39/+7 | |
| | ||||||
* | command: pass Response object to command callbacks | Max Kellermann | 2015-08-13 | 25 | -395/+246 | |
| | ||||||
* | client/Response: new Client wrapper class for writing responses | Max Kellermann | 2015-08-12 | 47 | -771/+1052 | |
| | ||||||
* | command/Request: add parser methods | Max Kellermann | 2015-08-11 | 9 | -67/+96 | |
| | | | | Wrapper for protocol/ArgParser.cxx. | |||||
* | protocol/ArgParser: add overload with max_value parameter | Max Kellermann | 2015-08-11 | 4 | -31/+33 | |
| | ||||||
* | protocol/ArgParser: use std::numeric_limits | Max Kellermann | 2015-08-11 | 2 | -3/+3 | |
| | | | | Using unsigned(-1) renders undefined behavior. | |||||
* | protocol/ArgParser: overload as ParseCommandArg(), pass references | Max Kellermann | 2015-08-11 | 8 | -71/+56 | |
| | ||||||
* | command/Request: new struct wrapping ConstBuffer<const char *> | Max Kellermann | 2015-08-11 | 26 | -215/+262 | |
| | ||||||
* | protocol/ArgParser: add struct RangeArg | Max Kellermann | 2015-08-11 | 5 | -40/+48 | |
| | ||||||
* | command/{Queue,Other}: eliminate local "bool" variable | Max Kellermann | 2015-08-11 | 3 | -13/+6 | |
| | ||||||
* | Partition: add method GetDatabase() | Max Kellermann | 2015-08-06 | 2 | -0/+14 | |
| | ||||||
* | ClientWrite: merge client_write() into Client::Write() | Max Kellermann | 2015-08-06 | 2 | -12/+6 | |
| | ||||||
* | Client: include cleanup | Max Kellermann | 2015-08-06 | 4 | -6/+4 | |
| | ||||||
* | output/fifo: smaller Cancel() buffer | Max Kellermann | 2015-08-06 | 1 | -4/+2 | |
| | ||||||
* | output/fifo: move the buffer into the loop | Max Kellermann | 2015-08-06 | 1 | -2/+1 | |
| | ||||||
* | output/fifo: use ssize_t for the read() result | Max Kellermann | 2015-08-06 | 1 | -1/+1 | |
| | ||||||
* | output/fifo: simplify the Cancel() loop | Max Kellermann | 2015-08-06 | 1 | -2/+3 | |
| | ||||||
* | output/fifo: convert struct to class | Max Kellermann | 2015-08-06 | 1 | -1/+4 | |
| | ||||||
* | output/fifo: use AudioOutputWrapper::Open(),Close() | Max Kellermann | 2015-08-06 | 1 | -14/+11 | |
| | ||||||
* | output/fifo: rename Open(), Close() to OpenFifo(), CloseFifo() | Max Kellermann | 2015-08-06 | 1 | -8/+8 | |
| | ||||||
* | playlist/embcue: fix last track | xent | 2015-08-05 | 1 | -1/+3 | |
| | ||||||
* | decoder/mpcdec: read the bit rate | Max Kellermann | 2015-08-05 | 1 | -4/+2 | |
| | | | | | This was lost in commit 8ead8f7ea, because this was never implemented for the new API. | |||||
* | decoder/mpcdec: use SampleTraits<SampleFormat::S24_P32> | Max Kellermann | 2015-08-05 | 1 | -11/+13 | |
| | ||||||
* | decoder/mpcdec: use Clamp() | Max Kellermann | 2015-08-05 | 1 | -6/+2 | |
| | ||||||
* | decoder/mpcdec: make buffer more local | Max Kellermann | 2015-08-05 | 1 | -2/+1 | |
| | | | | Allow the compiler to invalidate buffer contents. | |||||
* | event/ServerSocket: use AllocatedSocketAddress to build local socket address | Max Kellermann | 2015-07-22 | 1 | -13/+4 | |
| | ||||||
* | event/ServerSocket: use AllocatedSocketAddress for OneServerSocket::address | Max Kellermann | 2015-07-22 | 2 | -9/+16 | |
| | | | | Manages memory automatically. | |||||
* | net/AllocatedSocketAddress: new sockaddr wrapper class | Max Kellermann | 2015-07-22 | 2 | -0/+236 | |
| | ||||||
* | Net/StaticSocketAddress: add equality operator with SocketAddress | Max Kellermann | 2015-07-22 | 2 | -9/+4 | |
| | ||||||
* | net/StaticSocketAddress: replace cast operator with GetAddress() | Max Kellermann | 2015-07-22 | 2 | -4/+4 | |
| | | | | The implicit cast operator can be very dangerous. | |||||
* | net/ToString: relicense to BSD-2 | Max Kellermann | 2015-07-22 | 2 | -26/+47 | |
| | ||||||
* | net/ToString: rename sockaddr_to_string() to ToString() | Max Kellermann | 2015-07-22 | 5 | -5/+5 | |
| | ||||||
* | net/ToString: move V4 mapping code to functions | Max Kellermann | 2015-07-22 | 1 | -15/+36 | |
| | ||||||
* | net/ToString: make variables more local | Max Kellermann | 2015-07-22 | 1 | -8/+4 | |
| | ||||||
* | net/Resolver: move sockaddr_to_string() to ToString.cxx | Max Kellermann | 2015-07-22 | 7 | -112/+170 | |
| | ||||||
* | net/StaticSocketAddress: remove unused method SetLocal() | Max Kellermann | 2015-07-21 | 2 | -37/+0 | |
| | ||||||
* | net/StaticSocketAddress: include cleanup | Max Kellermann | 2015-07-21 | 1 | -7/+0 | |
| | ||||||
* | net/StaticSocketAddress: disable SetLocal() on Android | Max Kellermann | 2015-07-21 | 2 | -2/+2 | |
| | | | | Fixes build failure because Bionic doesn't provide SUN_LEN(). | |||||
* | net: add header Features.hxx | Max Kellermann | 2015-07-21 | 2 | -0/+28 | |
| | | | | | For improved portability of the net library to projects without autoconf. | |||||
* | net/StaticSocketAddress: include config.h | Max Kellermann | 2015-07-21 | 1 | -0/+1 | |
| | ||||||
* | net/StaticSocketAddress: use SocketAddress::size_type | Max Kellermann | 2015-07-21 | 2 | -6/+10 | |
| | ||||||
* | net/StaticSocketAddress: include cleanup | Max Kellermann | 2015-07-21 | 1 | -2/+0 | |
| | ||||||
* | lib/icu/Collate: remove GLib implementation | Max Kellermann | 2015-06-27 | 1 | -9/+0 | |
| | | | | | | There is not much use in GLib: on Windows, we have a native API for string collation, and the rest uses either libicu or the standard C library calls. | |||||
* | lib/icu/Collate: use LCMapStringEx() on Windows | Max Kellermann | 2015-06-27 | 1 | -0/+29 | |
| | ||||||
* | lib/icu/Converter: remove GLib implementation | Max Kellermann | 2015-06-26 | 3 | -53/+3 | |
| | | | | | We don't need this anymore: Win32 doesn't use this library at all, and everything else has either iconv() or libicu. | |||||
* | lib/icu/Converter: add iconv() implementation | Max Kellermann | 2015-06-26 | 4 | -3/+56 | |
| | ||||||
* | lib/icu/Converter: add missing <> | Max Kellermann | 2015-06-26 | 1 | -1/+1 | |
| | ||||||
* | CommandLine: show more compile-time features in --version | Max Kellermann | 2015-06-26 | 1 | -0/+36 | |
| |