1 #ifndef __GSK_STREAM_CLIENT_H_
2 #define __GSK_STREAM_CLIENT_H_
3 
4 #include "gsksocketaddress.h"
5 #include "gskstreamfd.h"
6 
7 G_BEGIN_DECLS
8 
9 GskStream *gsk_stream_new_connecting (GskSocketAddress  *address,
10 				      GError           **error);
11 
12 /* see also: gsk_socket_address_connect_fd
13         and  gsk_socket_address_finish_fd  (which has nothing to do with socket-addresses,
14                                             but they're designed as a pair) */
15 
16 G_END_DECLS
17 
18 #endif
19