~ubuntu-branches/ubuntu/saucy/curl/saucy

« back to all changes in this revision

Viewing changes to lib/socks.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-02-12 08:54:32 UTC
  • mfrom: (3.4.34 sid)
  • Revision ID: package-import@ubuntu.com-20130212085432-r1fyi0b37enr93pp
Tags: 7.29.0-1ubuntu1
* Resynchronise with Debian. Remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.
* Add warning to debian/patches/series.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __CURL_SOCKS_H
2
 
#define __CURL_SOCKS_H
 
1
#ifndef HEADER_CURL_SOCKS_H
 
2
#define HEADER_CURL_SOCKS_H
3
3
/***************************************************************************
4
4
 *                                  _   _ ____  _
5
5
 *  Project                     ___| | | |  _ \| |
22
22
 *
23
23
 ***************************************************************************/
24
24
 
25
 
#include "setup.h"
 
25
#include "curl_setup.h"
26
26
 
27
27
#ifdef CURL_DISABLE_PROXY
28
28
#define Curl_SOCKS4(a,b,c,d,e,f) CURLE_NOT_BUILT_IN
73
73
 
74
74
#endif /* CURL_DISABLE_PROXY */
75
75
 
76
 
#endif  /* __CURL_SOCKS_H */
 
76
#endif  /* HEADER_CURL_SOCKS_H */
 
77