renatofilho@922: /**
renatofilho@922: * GMyth Library
renatofilho@922: *
renatofilho@922: * @file test/main.c
renatofilho@922: *
renatofilho@922: * @brief
GMythUPnP allows that a MythTV frontend discovers a
renatofilho@922: * MythTV backend, using the UPnP architecture.
renatofilho@922: *
renatofilho@922: * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
renatofilho@922: * @author Rosfran Lins Borges
renatofilho@922: * @authon Renato Araujo Oliveira Filho
renatofilho@922: *
renatofilho@922: * This library is free software; you can redistribute it and/or
renatofilho@922: * modify it under the terms of the GNU Library General Public
renatofilho@922: * License as published by the Free Software Foundation; either
renatofilho@922: * version 2 of the License, or (at your option) any later version.
renatofilho@922: *
renatofilho@922: * This library is distributed in the hope that it will be useful,
renatofilho@922: * but WITHOUT ANY WARRANTY; without even the implied warranty of
renatofilho@922: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
renatofilho@922: * Library General Public License for more details.
renatofilho@922: *
renatofilho@922: * You should have received a copy of the GNU Library General Public
renatofilho@922: * License along with this library; if not, write to the
renatofilho@922: * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
renatofilho@922: * Boston, MA 02111-1307, USA.
renatofilho@922: */
renatofilho@922:
renatofilho@922:
renatofilho@909: #include
renatofilho@909:
renatofilho@909: #include "gmyth_upnp.h"
renatofilho@909:
renatofilho@909: static void
renatofilho@909: _device_found_cb (GMythUPnP *upnp,
renatofilho@909: GMythBackendInfo *info,
renatofilho@909: gpointer data)
renatofilho@909: {
renatofilho@909: g_debug ("BACKEND FOUND: %s", info->hostname);
renatofilho@909: }
renatofilho@909:
renatofilho@909: static void
renatofilho@909: _device_lost_cb (GMythUPnP *upnp,
renatofilho@909: GMythBackendInfo *info,
renatofilho@909: gpointer data)
renatofilho@909: {
renatofilho@909: g_debug ("BACKEND LOST: %s", info->hostname);
renatofilho@909: }
renatofilho@909:
renatofilho@909:
renatofilho@909:
renatofilho@909: int main (int argc, char** argv)
renatofilho@909: {
renatofilho@909: GMythUPnP *o;
renatofilho@909: GMainLoop *loop;
renatofilho@909:
renatofilho@909: g_type_init ();
renatofilho@909: g_thread_init (NULL);
renatofilho@909:
renatofilho@909: o = gmyth_upnp_get_instance ();
renatofilho@909: g_signal_connect (o,
renatofilho@909: "device-found",
renatofilho@909: G_CALLBACK (_device_found_cb),
renatofilho@909: NULL);
renatofilho@909: g_signal_connect (o,
renatofilho@909: "device-lost",
renatofilho@909: G_CALLBACK (_device_lost_cb),
renatofilho@909: NULL);
renatofilho@909:
renatofilho@909:
renatofilho@909: gmyth_upnp_search (o);
renatofilho@909:
renatofilho@909: loop = g_main_loop_new (NULL, FALSE);
renatofilho@909: g_main_loop_run (loop);
renatofilho@909: g_object_unref (o);
renatofilho@909:
renatofilho@909: return 0;
renatofilho@909: }