diff options
author | dequis <dx@dxzone.com.ar> | 2015-03-14 09:00:58 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-04-10 14:10:41 -0300 |
commit | 913a663a3e383c40c644a7d0a8c8aba9d417167c (patch) | |
tree | bb1199c444c20caf25c04e4f6b982c42536c2dc0 /protocols/msn/msn.h | |
parent | a4be2f6df564eea09612731be194278e4fb755e0 (diff) |
msn: implement the rest of the http gateway support, enable by default
Diffstat (limited to 'protocols/msn/msn.h')
-rw-r--r-- | protocols/msn/msn.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/protocols/msn/msn.h b/protocols/msn/msn.h index 7b1e0d26..cdc459f5 100644 --- a/protocols/msn/msn.h +++ b/protocols/msn/msn.h @@ -262,4 +262,11 @@ const struct msn_away_state *msn_away_state_by_code(char *code); const struct msn_away_state *msn_away_state_by_name(char *name); const struct msn_status_code *msn_status_by_number(int number); +/* gw.c */ +struct msn_gw *msn_gw_new(struct msn_data *md); +void msn_gw_free(struct msn_gw *gw); +void msn_gw_open(struct msn_gw *gw); +ssize_t msn_gw_read(struct msn_gw *gw, char **buf); +void msn_gw_write(struct msn_gw *gw, char *buf, size_t len); + #endif //_MSN_H |