daemon initial implementation
[profile/ivi/message-port.git] / daemon / server-socket.h
1 /* vi: set et sw=4 ts=4 cino=t0,(0: */
2 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 /*
4  * Copyright (C) 2013 Intel Corporation.
5  *
6  * Contact: Amarnath Valluri <amarnath.valluri@linux.intel.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  */
23
24 #ifndef _MSGPORT_SERVER_SOCKET_H
25 #define _MSGPORT_SERVER_SOCKET_H
26
27 #include <glib.h>
28 #include <glib-object.h>
29
30 G_BEGIN_DECLS
31
32 #define MSGPORT_TYPE_SERVER_SOCKET (msgport_server_socket_get_type())
33 #define MSGPORT_SERVER_SOCKET(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), MSGPORT_TYPE_SERVER_SOCKET, MsgPortServerSocket))
34 #define MSGPORT_SERVER_SOCKET_CLASS(obj)  (G_TYPE_CHECK_CLASS_CAST((kls), MSGPORT_TYPE_SERVER_SOCKET, MsgPortServerSocketClass))
35 #define MSGPORT_IS_SERVER_SOCKET(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), MSGPORT_TYPE_SERVER_SOCKET))
36 #define MSGPORT_IS_SERVER_SOCKET_CLASS(kls) (G_TYPE_CHECK_CLASS_TYPE((kls), MSGPORT_TYPE_SERVER_SOCKET))
37
38 typedef struct _MsgPortServerSocket MsgPortServerSocket;
39 typedef struct _MsgPortServerSocketClass MsgPortServerSocketClass;
40 typedef struct _MsgPortServerSocketPrivate MsgPortServerSocketPrivate;
41
42 struct _MsgPortServerSocket
43 {
44     GObject parent;
45
46     /* private */
47     MsgPortServerSocketPrivate *priv;
48 };
49
50 struct _MsgPortServerSocketClass
51 {
52     GObjectClass parenet_class;
53 };
54
55 GType msgport_server_socket_get_type (void);
56
57 MsgPortServerSocket *
58 msgport_server_socket_new ();
59
60 gboolean
61 msgport_server_socket_start ();
62
63 G_END_DECLS
64
65 #endif /* _MSGPORT_SERVER_SOCKET_H */
66