cleaner messages, no popup if required
[claws.git] / src / socket.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __SOCKET_H__
21 #define __SOCKET_H__
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <glib.h>
28 #include <gdk/gdk.h> /* ugly, just needed for the GdkInputCondition et al. */
29 #include <netdb.h>
30
31 typedef struct _SockInfo        SockInfo;
32
33 #if USE_SSL
34 #  include "ssl.h"
35 #endif
36
37 typedef enum
38 {
39         CONN_READY,
40         CONN_LOOKUPSUCCESS,
41         CONN_ESTABLISHED,
42         CONN_LOOKUPFAILED,
43         CONN_FAILED
44 } ConnectionState;
45
46 struct _SockInfo
47 {
48 #if USE_GIO
49         GIOChannel *channel;
50         gchar *buf;
51         gint buflen;
52 #else
53         gint sock;
54 #endif
55         gchar *hostname;
56         gushort port;
57         ConnectionState state;
58         gpointer data;
59 #if USE_SSL
60         SSL *ssl;
61 #endif
62 };
63
64 gint sock_set_nonblocking_mode          (SockInfo *sock, gboolean nonblock);
65 gboolean sock_is_nonblocking_mode       (SockInfo *sock);
66
67 struct hostent *my_gethostbyname        (const gchar *hostname);
68
69 SockInfo *sock_connect                  (const gchar *hostname, gushort port);
70 SockInfo *sock_connect_cmd              (const gchar *hostname, const gchar *tunnelcmd);
71
72 gint sock_printf        (SockInfo *sock, const gchar *format, ...)
73                          G_GNUC_PRINTF(2, 3);
74 gint sock_read          (SockInfo *sock, gchar *buf, gint len);
75 gint sock_write         (SockInfo *sock, const gchar *buf, gint len);
76 gint sock_gets          (SockInfo *sock, gchar *buf, gint len);
77 gchar *sock_getline     (SockInfo *sock);
78 gint sock_puts          (SockInfo *sock, const gchar *buf);
79 gint sock_close         (SockInfo *sock);
80
81 /* wrapper functions */
82 gint sock_gdk_input_add   (SockInfo             *sock,
83                            GdkInputCondition     condition,
84                            GdkInputFunction      function,
85                            gpointer              data);
86
87 /* Functions to directly work on FD.  They are needed for pipes */
88 gint fd_connect_unix    (const gchar *path);
89 gint fd_open_unix       (const gchar *path);
90 gint fd_accept          (gint sock);
91
92 gint fd_read            (gint sock, gchar *buf, gint len);
93 gint fd_write           (gint sock, const gchar *buf, gint len);
94 gint fd_gets            (gint sock, gchar *buf, gint len);
95 gchar *fd_getline       (gint sock);
96 gint fd_close           (gint sock);
97
98 /* Functions for SSL */
99 #if USE_SSL
100 gint ssl_read(SSL *ssl, gchar *buf, gint len);
101 gint ssl_write(SSL *ssl, const gchar *buf, gint len);
102 gint ssl_gets(SSL *ssl, gchar *buf, gint len);
103 gchar *ssl_getline(SSL *ssl);
104 #endif
105
106 #endif /* __SOCKET_H__ */