jingle-filetransfer/filetransfer.h
changeset 53 64a47491c068
parent 49 8dddfbe488b6
child 71 53ee5d729367
equal deleted inserted replaced
52:d803c882a182 53:64a47491c068
     8 typedef struct {
     8 typedef struct {
     9   /* the last modification of the file, optional */
     9   /* the last modification of the file, optional */
    10   time_t date;
    10   time_t date;
    11 
    11 
    12   /* MD5 hash of the file, optional */
    12   /* MD5 hash of the file, optional */
    13   const gchar *hash;
    13   gchar *hash;
    14 
    14 
    15   /* the name of the file that the sender wishes to send */
    15   /* the name of the file that the sender wishes to send */
    16   const gchar *name;
    16   gchar *name;
    17 
    17 
    18   /* the size, in bytes, of the data to be sent */
    18   /* the size, in bytes, of the data to be sent */
    19   gint64 size;
    19   gint64 size;
       
    20 
       
    21   /* descriptor to the output file */
       
    22   GIOChannel *outfile;
    20 } JingleFT;
    23 } JingleFT;
    21 
    24 
    22 #endif
    25 #endif