~ubuntu-branches/ubuntu/wily/curl/wily-proposed

« back to all changes in this revision

Viewing changes to lib/urldata.h

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2014-11-06 11:40:24 UTC
  • mto: This revision was merged to the branch mainline in revision 84.
  • Revision ID: package-import@ubuntu.com-20141106114024-aapp84u7vnrjqx84
Tags: 7.38.0-3
* Enable all hardening options (Closes: #763372)
* Fix duphandle read out of bounds as per CVE-2014-3707
  http://curl.haxx.se/docs/adv_20141105.html
* Set urgency=high accordingly

Show diffs side-by-side

added added

removed removed

Lines of Context:
1378
1378
  STRING_KRB_LEVEL,       /* krb security level */
1379
1379
  STRING_NETRC_FILE,      /* if not NULL, use this instead of trying to find
1380
1380
                             $HOME/.netrc */
1381
 
  STRING_COPYPOSTFIELDS,  /* if POST, set the fields' values here */
1382
1381
  STRING_PROXY,           /* proxy to use */
1383
1382
  STRING_SET_RANGE,       /* range, if used */
1384
1383
  STRING_SET_REFERER,     /* custom string for the HTTP referer field */
1420
1419
 
1421
1420
  STRING_BEARER,          /* <bearer>, if used */
1422
1421
 
1423
 
  /* -- end of strings -- */
 
1422
  /* -- end of zero-terminated strings -- */
 
1423
 
 
1424
  STRING_LASTZEROTERMINATED,
 
1425
 
 
1426
  /* -- below this are pointers to binary data that cannot be strdup'ed.
 
1427
     Each such pointer must be added manually to Curl_dupset() --- */
 
1428
 
 
1429
  STRING_COPYPOSTFIELDS,  /* if POST, set the fields' values here */
 
1430
 
1424
1431
  STRING_LAST /* not used, just an end-of-list marker */
1425
1432
};
1426
1433