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

« back to all changes in this revision

Viewing changes to serf_bucket_util.h

  • Committer: Bazaar Package Importer
  • Author(s): Peter Samuelson
  • Date: 2011-06-27 18:09:28 UTC
  • mfrom: (1.2.5 upstream)
  • mto: (3.3.1 sid)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20110627180928-ybwzd3hmx82nu3ir
Tags: 1.0.0~0+svn1514-1
* New upstream snapshot.
  - patches/abi-0.x: Remove as obsolete.
  - patches/kqueue: Forward-port.
  - Bump ABI: libserf0.7{,-dbg} -> libserf1{,-dbg}
  - patches/ip6-localhost: New patch: temporary (I hope) workaround for
    IPv4 / IPv6 confusion in testsuite.
* Implement Multi-Arch: same.
* libserf-dev Conflicts: libserf-0-0-dev, not Breaks.  Thanks, lintian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
void serf_default_destroy_and_data(
98
98
    serf_bucket_t *bucket);
99
99
 
100
 
/**
101
 
 * Default implementation of the @see snapshot functionality
102
 
 *
103
 
 * This function will return an error to indicate it's not implemented.
104
 
 */
105
 
apr_status_t serf_default_snapshot(
106
 
    serf_bucket_t *bucket);
107
 
 
108
 
/*
109
 
 * Default implementation of the @see restore_snapshot functionality
110
 
 *
111
 
 * This function will return an error to indicate it's not implemented.
112
 
 */
113
 
apr_status_t serf_default_restore_snapshot(
114
 
    serf_bucket_t *bucket);
115
 
 
116
 
/*
117
 
 * Default implementation of the @see is_snapshot_set functionality
118
 
 *
119
 
 * This function will return 0 (no snapshot set).
120
 
 */
121
 
int serf_default_is_snapshot_set(
122
 
    serf_bucket_t *bucket);
123
100
 
124
101
/**
125
102
 * Allocate @a size bytes of memory using @a allocator.