diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2010-12-07 04:48:14 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2010-12-07 04:48:14 +0000 |
commit | 14c652150c9a6339c792eb1911da809327237123 (patch) | |
tree | ad1bfa3e8818651ae8e4026f7571ec6392fb45b0 /libsylph/prefs_account.h | |
parent | 3a54dc9a9d8e28b9415552512d45d172528d1a78 (diff) |
added SOCKS4/5 proxy support.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2733 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/prefs_account.h')
-rw-r--r-- | libsylph/prefs_account.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/libsylph/prefs_account.h b/libsylph/prefs_account.h index d666fd1b..53295801 100644 --- a/libsylph/prefs_account.h +++ b/libsylph/prefs_account.h @@ -1,6 +1,6 @@ /* * LibSylph -- E-Mail client library - * Copyright (C) 1999-2007 Hiroyuki Yamamoto + * Copyright (C) 1999-2010 Hiroyuki Yamamoto * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -169,6 +169,17 @@ struct _PrefsAccount /* Compose */ gboolean sig_before_quote; + + /* Advanced - SOCKS proxy */ + gboolean use_socks; + gboolean use_socks_for_recv; + gboolean use_socks_for_send; + gint socks_type; + gchar *proxy_host; + gushort proxy_port; + gboolean use_proxy_auth; + gchar *proxy_name; + gchar *proxy_pass; }; PrefsAccount *prefs_account_new (void); |