looks like it is a good idea to activate XMPP_BIDI by default

This commit is contained in:
psyc://psyced.org/~lynX 2016-01-30 00:01:19 +01:00
parent 1cce84def9
commit c25e18a363
3 changed files with 8 additions and 2 deletions

View File

@ -81,7 +81,11 @@ sys64764() {
});
}
#define puts(string) castmsg(ME, "_notice_application_basic", string, ([]))
#if 0
# define puts(string) castmsg(ME, "_notice_application_basic", string, ([]))
#else
# define puts(string) call_out(#'castmsg, 2*(delay++), ME, "_notice_application_basic", string, ([]))
#endif
#define tell(user,string) sendmsg(user,"_notice_application_basic",string,([]))
sys64738(source) {
@ -92,6 +96,7 @@ sys64738(source) {
sys42336(source, mc, data, mapping vars) {
string t;
int delay = random(4);
if (stringp(data)) {
sscanf(data, "%s %s", data, t);

View File

@ -9,6 +9,7 @@
#define NAME "CryptoChat"
#define SECURE
#define PRIVATE
// should work like this, but there's a bug to fix here...
// when trying to call https://psyced.org:33333/@cryptochat

View File

@ -224,6 +224,7 @@
# define PERSISTENT_MASTERS
# define NEW_RENDER
# define MUCSUC
# define XMPP_BIDI
#endif
#define GAMMA // code that has left BETA and is in production use
@ -236,7 +237,6 @@
#endif
#ifdef EXPERIMENTAL
# define XMPP_BIDI
# define USE_AUTOALIAS
// fippo's brilliant single-user channel emulation for jabber MUCs
// unfortunately it provides no advantages over the old method, yet.