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

« back to all changes in this revision

Viewing changes to buckets/buckets.c

  • 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:
122
122
}
123
123
 
124
124
 
125
 
apr_status_t serf_default_snapshot(serf_bucket_t *bucket)
126
 
{
127
 
    /* Not implemented. */
128
 
    return APR_ENOTIMPL;
129
 
}
130
 
 
131
 
 
132
 
apr_status_t serf_default_restore_snapshot(serf_bucket_t *bucket)
133
 
{
134
 
    /* Not implemented. */
135
 
    return APR_ENOTIMPL;
136
 
}
137
 
 
138
 
 
139
 
int serf_default_is_snapshot_set(serf_bucket_t *bucket)
140
 
{
141
 
    return 0;  
142
 
}
143
 
 
144
125
/* ==================================================================== */
145
126
 
146
127