| Top |
| gint | camel_tcp_stream_connect () |
| gint | camel_tcp_stream_getsockopt () |
| gint | camel_tcp_stream_setsockopt () |
| PRFileDesc * | camel_tcp_stream_get_file_desc () |
| void | camel_tcp_stream_set_socks_proxy () |
| void | camel_tcp_stream_peek_socks_proxy () |
| struct sockaddr * | camel_tcp_stream_get_local_address () |
| struct sockaddr * | camel_tcp_stream_get_remote_address () |
gint camel_tcp_stream_connect (CamelTcpStream *stream,const gchar *host,const gchar *service,gint fallback_port,GCancellable *cancellable,GError **error);
Create a socket and connect based upon the data provided.
stream |
a CamelTcpStream object |
|
host |
Hostname for connection |
|
service |
Service name or port number in string form |
|
fallback_port |
Port number to retry if |
|
cancellable |
optional GCancellable object, or |
|
error |
gint camel_tcp_stream_getsockopt (CamelTcpStream *stream,CamelSockOptData *data);
Get the socket options set on the stream and populate data
.
gint camel_tcp_stream_setsockopt (CamelTcpStream *stream,const CamelSockOptData *data);
Set the socket options contained in data
on the stream.
PRFileDesc *
camel_tcp_stream_get_file_desc (CamelTcpStream *stream);
Since 2.32
void camel_tcp_stream_set_socks_proxy (CamelTcpStream *stream,const gchar *socks_host,gint socks_port);
Configures a SOCKS proxy for the specified stream
. Instead of
direct connections, this stream
will instead go through the proxy.
stream |
a CamelTcpStream object |
|
socks_host |
hostname to use for the SOCKS proxy |
|
socks_port |
port number to use for the SOCKS proxy |
Since 2.32
void camel_tcp_stream_peek_socks_proxy (CamelTcpStream *stream,const gchar **socks_host_ret,gint *socks_port_ret);
Queries the SOCKS proxy that is configured for a stream
. This will
return NULL in socks_host_ret
if no proxy is configured.
stream |
||
socks_host_ret |
location to return the name of the SOCKS host |
|
socks_port_ret |
location to return the port number in the SOCKS host |
Since 2.32
struct sockaddr * camel_tcp_stream_get_local_address (CamelTcpStream *stream,socklen_t *len);
Get the local address of stream
.
the stream's local address (which must be freed with
g_free()) if the stream is connected, or NULL if not
Since 2.22
struct sockaddr * camel_tcp_stream_get_remote_address (CamelTcpStream *stream,socklen_t *len);
Get the remote address of stream
.
the stream's remote address (which must be freed with
g_free()) if the stream is connected, or NULL if not.
Since 2.22
typedef struct {
CamelSockOpt option;
union {
guint ip_ttl; /* IP time to live */
guint mcast_ttl; /* IP multicast time to live */
guint tos; /* IP type of service and precedence */
gboolean non_blocking; /* Non-blocking (network) I/O */
gboolean reuse_addr; /* Allow local address reuse */
gboolean keep_alive; /* Keep connections alive */
gboolean mcast_loopback; /* IP multicast loopback */
gboolean no_delay; /* Don't delay send to coalesce packets */
gboolean broadcast; /* Enable broadcast */
gsize max_segment; /* Maximum segment size */
gsize recv_buffer_size; /* Receive buffer size */
gsize send_buffer_size; /* Send buffer size */
CamelLinger linger; /* Time to linger on close if data present */
} value;
} CamelSockOptData;