mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
looks like it is a good idea to activate XMPP_BIDI by default
This commit is contained in:
parent
1cce84def9
commit
c25e18a363
3 changed files with 8 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue