2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2017 Hiroyuki Yamamoto and the Claws Mail team
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 3 of the License, or
8 * (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "claws-features.h"
31 typedef struct _SockInfo SockInfo
;
47 typedef gint (*SockConnectFunc
) (SockInfo
*sock
,
49 typedef gboolean (*SockFunc
) (SockInfo
*sock
,
50 GIOCondition condition
,
58 gnutls_certificate_credentials_t xcred
;
59 #if GNUTLS_VERSION_NUMBER < 0x030000
60 gnutls_x509_crt_t client_crt
;
61 gnutls_x509_privkey_t client_key
;
63 gnutls_pcert_st client_crt
;
64 gnutls_privkey_t client_key
;
65 #endif /* GNUTLS_VERSION_NUMBER < 0x030000 */
66 gchar
*gnutls_priority
;
73 ConnectionState state
;
77 GIOCondition condition
;
78 gchar
*canonical_name
;
82 gboolean ssl_cert_auto_accept
;
86 void refresh_resolvers (void);
87 gint
sock_init (void);
88 gint
sock_cleanup (void);
90 gint
sock_set_io_timeout (guint sec
);
92 gint
sock_set_nonblocking_mode (SockInfo
*sock
, gboolean nonblock
);
93 gboolean
sock_is_nonblocking_mode (SockInfo
*sock
);
95 guint
sock_add_watch (SockInfo
*sock
, GIOCondition condition
,
96 SockFunc func
, gpointer data
);
98 SockInfo
*sock_connect (const gchar
*hostname
, gushort port
);
99 gint
sock_connect_async (const gchar
*hostname
, gushort port
,
100 SockConnectFunc func
, gpointer data
);
101 gint
sock_connect_async_cancel (gint id
);
103 /* Basic I/O functions */
104 gint
sock_read (SockInfo
*sock
, gchar
*buf
, gint len
);
105 gint
sock_write (SockInfo
*sock
, const gchar
*buf
, gint len
);
106 gint
sock_write_all (SockInfo
*sock
, const gchar
*buf
, gint len
);
107 gint
sock_close (SockInfo
*sock
, gboolean close_fd
);
109 /* Functions to directly work on FD. They are needed for pipes */
110 gint
fd_connect_unix (const gchar
*path
);
111 gint
fd_open_unix (const gchar
*path
);
112 gint
fd_accept (gint sock
);
114 gint
fd_connect_inet(gushort port
);
115 gint
fd_open_inet(gushort port
);
117 gint
fd_write (gint sock
, const gchar
*buf
, gint len
);
118 gint
fd_write_all (gint sock
, const gchar
*buf
, gint len
);
119 gint
fd_gets (gint sock
, gchar
*buf
, gint len
);
120 gint
fd_close (gint sock
);
122 #endif /* __SOCKET_H__ */