Show
Ignore:
Timestamp:
01/27/08 13:59:29 (11 months ago)
Author:
edmanm
Message:

r89@lysithea: edmanm | 2008-01-27 13:58:58 -0500
Add a 'ProxyExecutableArguments?' configuration option to specify command line
arguments to be used when launching ProxyExecutable?. Patch from Steven J.
Murdoch <http://www.cl.cam.ac.uk/users/sjm217/>.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vidalia/trunk/src/vidalia/config/vidaliasettings.h

    r2324 r2328  
    7676   * executable name. */ 
    7777  QString getBrowserExecutable() const; 
    78   /** Sets the location and name of the web browser executable to the given string. 
    79    * If set to the empty string, the browser will not be started. */ 
     78  /** Sets the location and name of the web browser executable to the given 
     79   * string. If set to the empty string, the browser will not be started. */ 
    8080  void setBrowserExecutable(const QString &browserExecutable); 
    8181 
     
    8484  QString getProxyExecutable() const; 
    8585 
    86   /** Sets the location and name of the proxy server executable to the given string. 
    87    * If set to the empty string, the proxy will not be started. */ 
     86  /** Sets the location and name of the proxy server executable to the given 
     87   * string. If set to the empty string, the proxy will not be started. */ 
    8888  void setProxyExecutable(const QString &proxyExecutable); 
     89 
     90  /** Returns a list containing additional command line arguments to be 
     91   * passed to ProxyExecutable */ 
     92  QStringList getProxyExecutableArguments() const; 
     93 
     94  /** Sets the additional arguments to be passed to Proxy Executable */ 
     95  void setProxyExecutableArguments(const QStringList &proxyExecutableArguments); 
    8996}; 
    9097