diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-21 16:17:24 +0000 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-21 16:17:24 +0000 | 
| commit | 85693e62c8e847ee0336419c3f229bb5caac29a0 (patch) | |
| tree | 1e1dbba1cba752b75dcf44394f7d6a0a0b14f934 /protocols/nogaim.h | |
| parent | 81ee561d520e38535fb6947ac0e3fba808e6de4b (diff) | |
| parent | 767a148faa35c18cdf4da77b5919a2f6e2df868a (diff) | |
Merging in killerbee stuff (just file transfers and maybe a few things from
mainline). Once I add ft support glue to protocols/purple/ I guess this will
all go into killerbee.
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 ff24acc2..de561c39 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 */ @@ -228,6 +230,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. */ | 
