diff src/gt_xfer.h @ 0:d39e1d0d75b6

initial add
author paulo@hit-nxdomain.opendns.com
date Sat, 20 Feb 2010 21:18:28 -0800
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/gt_xfer.h	Sat Feb 20 21:18:28 2010 -0800
     1.3 @@ -0,0 +1,74 @@
     1.4 +/*
     1.5 + * $Id: gt_xfer.h,v 1.27 2004/05/05 10:30:12 hipnod Exp $
     1.6 + *
     1.7 + * Copyright (C) 2001-2003 giFT project (gift.sourceforge.net)
     1.8 + *
     1.9 + * This program is free software; you can redistribute it and/or modify it
    1.10 + * under the terms of the GNU General Public License as published by the
    1.11 + * Free Software Foundation; either version 2, or (at your option) any
    1.12 + * later version.
    1.13 + *
    1.14 + * This program is distributed in the hope that it will be useful, but
    1.15 + * WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    1.17 + * General Public License for more details.
    1.18 + */
    1.19 +
    1.20 +#ifndef GIFT_GT_XFER_H_
    1.21 +#define GIFT_GT_XFER_H_
    1.22 +
    1.23 +/*****************************************************************************/
    1.24 +
    1.25 +struct transfer;
    1.26 +struct source;
    1.27 +struct chunk;
    1.28 +
    1.29 +struct gt_transfer;
    1.30 +
    1.31 +/*****************************************************************************/
    1.32 +
    1.33 +char *gt_localize_request (struct gt_transfer *xfer, char *s_path,
    1.34 +                           BOOL *authorized);
    1.35 +
    1.36 +/*****************************************************************************/
    1.37 +/* Push handling routines */
    1.38 +
    1.39 +void  gt_push_source_add           (gt_guid_t *guid, in_addr_t ip,
    1.40 +                                    in_addr_t src_ip);
    1.41 +void  gt_push_source_remove        (gt_guid_t *guid, in_addr_t ip,
    1.42 +                                    in_addr_t src_ip);
    1.43 +BOOL  gt_push_source_add_xfer      (gt_guid_t *guid, in_addr_t ip,
    1.44 +                                    in_addr_t src_ip,
    1.45 +                                    struct gt_transfer *xfer);
    1.46 +BOOL  gt_push_source_add_conn      (gt_guid_t *guid, in_addr_t ip, TCPC *c);
    1.47 +
    1.48 +void  gt_push_source_remove_xfer   (struct gt_transfer *xfer);
    1.49 +void  gt_push_source_remove_conn   (TCPC *c);
    1.50 +
    1.51 +/*****************************************************************************/
    1.52 +
    1.53 +int  gnutella_download_start  (struct protocol *p, struct transfer *transfer,
    1.54 +                               struct chunk *chunk, struct source *source);
    1.55 +void gnutella_download_stop   (struct protocol *p, struct transfer *transfer,
    1.56 +                               struct chunk *chunk, struct source *source,
    1.57 +                               BOOL complete);
    1.58 +
    1.59 +/*****************************************************************************/
    1.60 +
    1.61 +int  gnutella_upload_start (struct protocol *p, struct transfer *transfer,
    1.62 +                            struct chunk *chunk, struct source *source,
    1.63 +                            unsigned long avail);
    1.64 +void gnutella_upload_stop  (struct protocol *p, struct transfer *transfer,
    1.65 +                            struct chunk *chunk, struct source *source);
    1.66 +void gnutella_upload_avail (struct protocol *p, unsigned long avail);
    1.67 +
    1.68 +/*****************************************************************************/
    1.69 +
    1.70 +int gnutella_chunk_suspend (Protocol *p, struct transfer *transfer,
    1.71 +                            struct chunk *chunk, struct source *source);
    1.72 +int gnutella_chunk_resume  (Protocol *p, struct transfer *transfer,
    1.73 +                            struct chunk *chunk, struct source *source);
    1.74 +
    1.75 +/*****************************************************************************/
    1.76 +
    1.77 +#endif /* GIFT_GT_XFER_H_ */