diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-21 16:06:31 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-21 16:06:31 +0000 |
commit | 767a148faa35c18cdf4da77b5919a2f6e2df868a (patch) | |
tree | 43f981453468759d31d7b215d84d750dbe4876ac /protocols/nogaim.h | |
parent | 545d7c058d0604dd6acfa37c68e9867e72f25c2e (diff) | |
parent | a81d679654e36055ce9913cd7541885b41380947 (diff) |
Merging in file transfer support. Most important points from my review
are fixed now, time to let it settle in and get people to try it.
Diffstat (limited to 'protocols/nogaim.h')
-rw-r--r-- | protocols/nogaim.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/nogaim.h b/protocols/nogaim.h index a523a3a5..324a2b46 100644 --- a/protocols/nogaim.h +++ b/protocols/nogaim.h @@ -44,6 +44,8 @@ #include "account.h" #include "proxy.h" #include "query.h" +#include "md5.h" +#include "ft.h" #define BUDDY_ALIAS_MAXLEN 388 /* because MSN names can be 387 characters */ @@ -227,6 +229,9 @@ struct prpl { /* Implement these callbacks if you want to use imcb_ask_auth() */ void (* auth_allow) (struct im_connection *, const char *who); void (* auth_deny) (struct im_connection *, const char *who); + + /* Incoming transfer request */ + void (* transfer_request) (struct im_connection *, file_transfer_t *ft, char *handle ); }; /* im_api core stuff. */ |