/* * * AT Server library with GLib integration * * Copyright (C) 2008-2010 Intel Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef __GATSERVER_H #define __GATSERVER_H #ifdef __cplusplus extern "C" { #endif #include "gatutil.h" struct _GAtServer; typedef struct _GAtServer GAtServer; /* V.250 Table 1/V.250 Result codes */ enum _GAtServerResultCodes { G_AT_SERVER_RESULT_OK = 0, G_AT_SERVER_RESULT_CONNECT, G_AT_SERVER_RESULT_RING, G_AT_SERVER_RESULT_NO_CARRIER, G_AT_SERVER_RESULT_ERROR, G_AT_SERVER_RESULT_NO_DIALTONE, G_AT_SERVER_RESULT_BUSY, G_AT_SERVER_RESULT_NO_ANSWER, G_AT_SERVER_RESULT_CONNECT_EXT, }; GAtServer *g_at_server_new(GIOChannel *io); GAtServer *g_at_server_ref(GAtServer *server); void g_at_server_unref(GAtServer *server); gboolean g_at_server_shutdown(GAtServer *server); gboolean g_at_server_set_disconnect_function(GAtServer *server, GAtDisconnectFunc disconnect, gpointer user_data); gboolean g_at_server_set_debug(GAtServer *server, GAtDebugFunc func, gpointer user); #ifdef __cplusplus } #endif #endif /* __GATSERVER_H */