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

« back to all changes in this revision

Viewing changes to buckets/chunk_buckets.c

  • Committer: Bazaar Package Importer
  • Author(s): Peter Samuelson
  • Date: 2011-06-03 03:18:07 UTC
  • mfrom: (1.2.4 upstream)
  • mto: (3.3.1 sid)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20110603031807-3vq82t5lzw692our
Tags: 0.7.2-1
* New upstream release.
  - patches/no-export-vars: delete, now upstream.
* New ABI:
  - patches/abi-0.x: New patch to change upstream SONAME.
  - Rename libserf-0-0 to libserf0.7.
  - Rename libserf-0-0-dev to libserf-dev while we're at it.
* Policy 3.9.1: one instance of s/Conflicts/Breaks/.
* "Upgrade" to source format 1.0.
* Add some Depends: ${misc:Depends}; thanks, Lintian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 * distributed under the License is distributed on an "AS IS" BASIS,
11
11
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
 * See the License for the specific language governing permissions and
13
 
 * chunkations under the License.
 
13
 * limitations under the License.
14
14
 */
15
15
 
16
16
#include <apr_pools.h>
36
36
} chunk_context_t;
37
37
 
38
38
 
39
 
SERF_DECLARE(serf_bucket_t *) serf_bucket_chunk_create(
 
39
serf_bucket_t *serf_bucket_chunk_create(
40
40
    serf_bucket_t *stream, serf_bucket_alloc_t *allocator)
41
41
{
42
42
    chunk_context_t *ctx;
223
223
    serf_default_destroy_and_data(bucket);
224
224
}
225
225
 
226
 
SERF_DECLARE_DATA const serf_bucket_type_t serf_bucket_type_chunk = {
 
226
const serf_bucket_type_t serf_bucket_type_chunk = {
227
227
    "CHUNK",
228
228
    serf_chunk_read,
229
229
    serf_chunk_readline,