aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-03 03:07:16 +0100
committerMax Kellermann <max@duempel.org>2013-01-03 03:07:16 +0100
commitb25cce464a83c69fbf41143b52928f5c19756bce (patch)
tree5351d4615ac7308b4c7eae044102b6b38b024870 /src
parenta2297558ff6162f1669e7982ba406c44b01b0c79 (diff)
client_new: convert to C++
Diffstat (limited to 'src')
-rw-r--r--src/ClientNew.cxx (renamed from src/client_new.c)10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/client_new.c b/src/ClientNew.cxx
index cf28c43c..28a837b6 100644
--- a/src/client_new.c
+++ b/src/ClientNew.cxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -18,11 +18,15 @@
*/
#include "config.h"
+extern "C" {
#include "client_internal.h"
+}
#include "fd_util.h"
+extern "C" {
#include "fifo_buffer.h"
#include "resolver.h"
#include "permission.h"
+}
#include "glib_socket.h"
#include <assert.h>
@@ -99,7 +103,7 @@ client_new(struct player_control *player_control,
g_io_channel_set_buffered(client->channel, false);
client->source_id = g_io_add_watch(client->channel,
- G_IO_IN|G_IO_ERR|G_IO_HUP,
+ GIOCondition(G_IO_IN|G_IO_ERR|G_IO_HUP),
client_in_event, client);
client->input = fifo_buffer_new(4096);
@@ -136,7 +140,7 @@ client_new(struct player_control *player_control,
static void
deferred_buffer_free(gpointer data, G_GNUC_UNUSED gpointer user_data)
{
- struct deferred_buffer *buffer = data;
+ struct deferred_buffer *buffer = (struct deferred_buffer *)data;
g_free(buffer);
}