~ubuntu-branches/ubuntu/trusty/serf/trusty-security

« back to all changes in this revision

Viewing changes to buckets/limit_buckets.c

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2013-12-31 13:17:16 UTC
  • mfrom: (1.1.8) (3.3.2 sid)
  • Revision ID: package-import@ubuntu.com-20131231131716-s862wc4uwdzxmrr1
Tags: 1.3.3-1
* Add myself to Uploaders.
* Change the watch file to better handle code.google.com.
* New upstream release.  (Closes: #716793)
  + Refresh patches/libtool
  + Update symbols
* Adapt packaging for the upstream switch to SCons.
  + control: + scons, - autotools-dev, autoconf
  + rules: Change configure/make calls to scons
* Rename libserf1 to libserf-1-1, following standard naming conventions.
* Enable hardening flags.
* Strip unnecessary RPATH from libserf.
* Honor DEB_BUILD_OPTIONS=parallel=X

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
#include "serf.h"
19
19
#include "serf_bucket_util.h"
20
 
 
21
 
/* Older versions of APR do not have this macro.  */
22
 
#ifdef APR_SIZE_MAX
23
 
#define REQUESTED_MAX APR_SIZE_MAX
24
 
#else
25
 
#define REQUESTED_MAX (~((apr_size_t)0))
26
 
#endif
27
 
 
 
20
#include "serf_private.h"
28
21
 
29
22
typedef struct {
30
23
    serf_bucket_t *stream;