X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=sideband.h;h=6973b845e01527d609bd0ce3b3eac9336e4398ba;hp=4f4ed0ac219d826e6d76aa0fded9a9fa13dd57c0;hb=62c0894fbb589dd45e69b7d9ef1fd152a9960d62;hpb=2830b9f881898aaec073d5ba19e33482e30190bd diff --git a/sideband.h b/sideband.h index 4f4ed0ac..6973b845 100644 --- a/sideband.h +++ b/sideband.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2012 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2012 Andre Noll , see file COPYING. */ /** \file sideband.h exported symbols from sideband.c */ @@ -58,6 +54,10 @@ DESIGNATOR(EXIT__SUCCESS), \ /* Command failed. */ \ DESIGNATOR(EXIT__FAILURE), \ + /* The next chunk of the blob (addblob commands only) */ \ + DESIGNATOR(BLOB_DATA), \ + /* An afs callback failed. */ \ + DESIGNATOR(AFS_CB_FAILURE), \ /** Just prefix with \p SBD_. */ #define DESIGNATOR(x) SBD_ ## x @@ -97,7 +97,7 @@ struct sb_context; /** * The type of a sideband transformation. * - * The sideband API allows to filter all data through an arbitrary + * The sideband API allows the filtering of data through an arbitrary * transformation, which is useful for crypto purposes. The transformation may * either transform the data in place, or return a pointer to a new buffer * which contains the transformed source buffer. The internal sideband @@ -114,7 +114,7 @@ typedef void (*sb_transformation)(struct iovec *src, struct iovec *dst, /** Initialize a sideband buffer. */ #define SBB_INIT(_band, _buf, _numbytes) \ { \ - .band = band, \ + .band = _band, \ .iov = { \ .iov_base = _buf, \ .iov_len = _numbytes \