On Tue, 2010-06-15, i...@apache.org wrote:
> Author: ivan
> Date: Tue Jun 15 10:37:09 2010
> New Revision: 954797
> 
> URL: http://svn.apache.org/viewvc?rev=954797&view=rev
> Log:
> Write update request body to file, to able resend it if needed.
> 
> * subversion/libsvn_ra_serf/update.c
[...]
>   (create_update_report_body): New function to create update request 
>    body bucket based on file.

Hi Ivan.  Please consider writing a doc string for this new function.

Thanks.
- Julian


[...]
> +static serf_bucket_t *
> +create_update_report_body(void *baton,
> +                          serf_bucket_alloc_t *alloc,
> +                          apr_pool_t *pool)
> +{
> +  report_context_t *report = baton;
> +  apr_off_t offset;
> +
> +  offset = 0;
> +  apr_file_seek(report->body_file, APR_SET, &offset);
> +
> +  return serf_bucket_file_create(report->body_file, alloc);
> +}
[...]


Reply via email to