aboutsummaryrefslogtreecommitdiffstats
path: root/src/ClientNew.cxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* system/Resolver: sockaddr_to_string() returns std::string()Max Kellermann2013-12-041-13/+4
| | | | No GLib memory allocation.
* include cleanup using iwyuMax Kellermann2013-11-281-2/+0
|
* ClientNew: fix nullptr dereference after g_get_prgname() failureMax Kellermann2013-11-251-1/+3
| | | | | | Hard-code the program name to "mpd" instead of using g_get_prgname(). The latter has become useless since this GLib variable doesn't get initialized anymore.
* *: use references instead of pointersMax Kellermann2013-10-191-1/+1
|
* Thread/Thread: replacement library for GThreadMax Kellermann2013-10-171-0/+2
|
* Log: new logging library APIMax Kellermann2013-10-021-10/+7
| | | | | Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
* util/Error: new error passing libraryMax Kellermann2013-09-041-2/+4
| | | | Replaces GLib's GError.
* system/resolver: convert to C++Max Kellermann2013-09-041-3/+1
|
* Makefile.am: move sources to libsystem.aMax Kellermann2013-08-071-2/+2
|
* Main: move global variables to struct InstanceMax Kellermann2013-04-171-4/+5
| | | | More preparations for multi-player support.
* output/httpd: use the BufferedSocket class for HttpdClientMax Kellermann2013-01-301-1/+0
|
* event/BufferedSocket: move output buffer to FullyBufferedSocketMax Kellermann2013-01-301-1/+1
| | | | | BufferedSocket has just an input buffer, and FullyBufferedSocket adds the output buffer.
* ClientList: convert to a classMax Kellermann2013-01-161-3/+4
|
* Client: use TimeoutMonitor to track connection timeoutMax Kellermann2013-01-161-6/+2
| | | | Don't use a global loop over the whole client list.
* Client: rebase on the new BufferedSocket classMax Kellermann2013-01-151-25/+6
|
* Client: move output buffer code to new class PeakBufferMax Kellermann2013-01-151-12/+1
|
* Client: move connection functions into the classMax Kellermann2013-01-151-6/+5
|
* fifo_buffer: move to util/Max Kellermann2013-01-151-1/+1
|
* fifo_buffer: add extern "C"Max Kellermann2013-01-151-1/+1
|
* ClientList: add header ClientList.hxxMax Kellermann2013-01-091-0/+1
|
* Client: add Partition reference attributeMax Kellermann2013-01-071-6/+6
| | | | playlist and player_control are deprecated.
* Client: add "playlist" attributeMax Kellermann2013-01-041-4/+5
| | | | Reduce access to the global variable "g_playlist".
* Client: initialize num_subscriptionsMax Kellermann2013-01-041-1/+2
|
* Client: move code to class CommandListBuilderMax Kellermann2013-01-041-4/+0
|
* ClientNew: initialise the "idle" attributesMax Kellermann2013-01-031-1/+2
| | | | Make valgrind happy.
* Client: add constructor and destructorMax Kellermann2013-01-031-52/+51
| | | | Move code from client_new() and client_close().
* Client: use std::deque for messagesMax Kellermann2013-01-031-3/+0
|
* ClientInternal: use std::set for subscriptionsMax Kellermann2013-01-031-1/+0
|
* ClientNew: allocate/dispose client objects with new/deleteMax Kellermann2013-01-031-3/+2
| | | | Prepare for adding non-trivial attributes.
* Client: rename the struct client to class ClientMax Kellermann2013-01-031-3/+3
|
* client: convert to C++Max Kellermann2013-01-031-3/+1
|
* permission: convert to C++Max Kellermann2013-01-031-1/+1
|
* client_new: convert to C++Max Kellermann2013-01-031-0/+169