Mercurial > pidgin
comparison src/server.c @ 260:325d9804df10
[gaim-migrate @ 270]
Preparing for when libfaim can do rvous stuff
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Wed, 24 May 2000 22:47:09 +0000 |
| parents | 1eeece1c7b7b |
| children | 8aa7368baae7 |
comparison
equal
deleted
inserted
replaced
| 259:e159ba2486fc | 260:325d9804df10 |
|---|---|
| 922 else | 922 else |
| 923 w = 0; | 923 w = 0; |
| 924 | 924 |
| 925 chat_write(b, who, w, message); | 925 chat_write(b, who, w, message); |
| 926 } | 926 } |
| 927 | 927 |
| 928 | 928 void serv_rvous_accept(char *name, char *cookie, char *uid) |
| 929 { | |
| 930 char buf[MSG_LEN]; | |
| 931 #ifndef USE_OSCAR | |
| 932 g_snprintf(buf, MSG_LEN, "toc_rvous_accept %s %s %s", normalize(name), | |
| 933 cookie, uid); | |
| 934 sflap_send(buf, strlen(buf), TYPE_DATA); | |
| 935 #endif | |
| 936 } | |
| 937 | |
| 938 void serv_rvous_cancel(char *name, char *cookie, char *uid) | |
| 939 { | |
| 940 char buf[MSG_LEN]; | |
| 941 #ifndef USE_OSCAR | |
| 942 g_snprintf(buf, MSG_LEN, "toc_rvous_cancel %s %s %s", normalize(name), | |
| 943 cookie, uid); | |
| 944 sflap_send(buf, strlen(buf), TYPE_DATA); | |
| 945 #endif | |
| 946 } |
