summaryrefslogtreecommitdiff
path: root/src/upload.h
blob: 9f3f719d5b1081e003be0d3d7b6481d0e3c50605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef UPLOAD_H_
#define UPLOAD_H_

#include <glib.h>

#include "trg-client.h"
#include "trg-main-window.h"

typedef struct {
    GSList *list; // list of filenames
    trg_response *upload_response; // OR: a HTTP response containing a torrent
    TrgClient *client;
    gpointer cb_data;
    TrgMainWindow *main_window; // a parent window to attach any error dialogs to
    guint flags;
    gchar *dir;
    gint priority;
    gboolean extra_args;
    guint progress_index;

} trg_upload;

void trg_do_upload(trg_upload *upload);

#endif