mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-12-05 00:22:19 +00:00
looks like it is a good idea to activate XMPP_BIDI by default
This commit is contained in:
parent
1cce84def9
commit
c25e18a363
@ -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,([]))
|
#define tell(user,string) sendmsg(user,"_notice_application_basic",string,([]))
|
||||||
|
|
||||||
sys64738(source) {
|
sys64738(source) {
|
||||||
@ -92,6 +96,7 @@ sys64738(source) {
|
|||||||
|
|
||||||
sys42336(source, mc, data, mapping vars) {
|
sys42336(source, mc, data, mapping vars) {
|
||||||
string t;
|
string t;
|
||||||
|
int delay = random(4);
|
||||||
|
|
||||||
if (stringp(data)) {
|
if (stringp(data)) {
|
||||||
sscanf(data, "%s %s", data, t);
|
sscanf(data, "%s %s", data, t);
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
#define NAME "CryptoChat"
|
#define NAME "CryptoChat"
|
||||||
#define SECURE
|
#define SECURE
|
||||||
|
#define PRIVATE
|
||||||
|
|
||||||
// should work like this, but there's a bug to fix here...
|
// should work like this, but there's a bug to fix here...
|
||||||
// when trying to call https://psyced.org:33333/@cryptochat
|
// when trying to call https://psyced.org:33333/@cryptochat
|
||||||
|
@ -224,6 +224,7 @@
|
|||||||
# define PERSISTENT_MASTERS
|
# define PERSISTENT_MASTERS
|
||||||
# define NEW_RENDER
|
# define NEW_RENDER
|
||||||
# define MUCSUC
|
# define MUCSUC
|
||||||
|
# define XMPP_BIDI
|
||||||
#endif
|
#endif
|
||||||
#define GAMMA // code that has left BETA and is in production use
|
#define GAMMA // code that has left BETA and is in production use
|
||||||
|
|
||||||
@ -236,7 +237,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef EXPERIMENTAL
|
#ifdef EXPERIMENTAL
|
||||||
# define XMPP_BIDI
|
|
||||||
# define USE_AUTOALIAS
|
# define USE_AUTOALIAS
|
||||||
// fippo's brilliant single-user channel emulation for jabber MUCs
|
// fippo's brilliant single-user channel emulation for jabber MUCs
|
||||||
// unfortunately it provides no advantages over the old method, yet.
|
// unfortunately it provides no advantages over the old method, yet.
|
||||||
|
Loading…
Reference in New Issue
Block a user