~ubuntu-branches/ubuntu/trusty/proftpd-dfsg/trusty

« back to all changes in this revision

Viewing changes to contrib/mod_sftp/channel.h

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2011-10-06 12:57:29 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20111006125729-wiq6d3yzf2ensafj
Tags: 1.3.4~rc3-1
* New upstream pre-release.
* Refreshed all patches.
* Changed patch xferstats.holger-preiss to fix a few warnings and use
  Getopt::Std instead of the old getopts.pl which will be removed soon or
  later in perl5. Thanks lintian.
* Policy bumped to 3.9.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 *
15
15
 * You should have received a copy of the GNU General Public License
16
16
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
 
17
 * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
18
18
 *
19
19
 * As a special exemption, TJ Saunders and other respective copyright holders
20
20
 * give permission to link this program with OpenSSL, and distribute the
21
21
 * resulting executable, without including the source code for OpenSSL in the
22
22
 * source distribution.
23
23
 *
24
 
 * $Id: channel.h,v 1.10 2011/03/19 02:56:48 castaglia Exp $
 
24
 * $Id: channel.h,v 1.12 2011/05/24 20:55:50 castaglia Exp $
25
25
 */
26
26
 
27
27
#include "mod_sftp.h"
63
63
 
64
64
  /* For channel handling systems (e.g. fxp, scp) */
65
65
  int (*prepare)(uint32_t);
 
66
  int (*postopen)(uint32_t);
66
67
  int (*handle_packet)(pool *, void *, uint32_t, char *, uint32_t);
67
68
  int (*finish)(uint32_t);
68
69
};