citadel.git
14 years ago* serv_read_binary(): in some cases we can get here without having anything in our...
Wilfried Göesgens [Tue, 23 Mar 2010 22:34:47 +0000 (22:34 +0000)]
* serv_read_binary(): in some cases we can get here without having anything in our read buffer; catch this situation.

14 years ago * StrBufPlain(): secure input arguments; don't strlen(NULL)
Wilfried Göesgens [Tue, 23 Mar 2010 22:19:22 +0000 (22:19 +0000)]
 * StrBufPlain(): secure input arguments; don't strlen(NULL)

14 years ago* client_read_blob() don't swallow errorstates.
Wilfried Göesgens [Tue, 23 Mar 2010 21:53:33 +0000 (21:53 +0000)]
* client_read_blob() don't swallow errorstates.

14 years ago * qp_encode_email_addrs(): don't use static buffers for recipient parts; alloc...
Wilfried Göesgens [Tue, 23 Mar 2010 21:05:20 +0000 (21:05 +0000)]
 * qp_encode_email_addrs():  don't use static buffers for recipient parts; alloc the size of the total buffer here, so it fits in any case.

14 years ago* More work on the XMPP dead buddy list
Art Cancro [Mon, 22 Mar 2010 18:31:36 +0000 (18:31 +0000)]
* More work on the XMPP dead buddy list

14 years ago* more work on the dead buddies purge
Art Cancro [Mon, 22 Mar 2010 04:57:27 +0000 (04:57 +0000)]
* more work on the dead buddies purge

14 years ago * imap_fetch_rfc822(): migrate to strbuf
Wilfried Göesgens [Sun, 21 Mar 2010 11:50:22 +0000 (11:50 +0000)]
 * imap_fetch_rfc822(): migrate to strbuf

14 years ago* clean up dead buddies from the xmpp roster (not finished yet)
Art Cancro [Sun, 21 Mar 2010 04:40:39 +0000 (04:40 +0000)]
* clean up dead buddies from the xmpp roster (not finished yet)

14 years ago* imap_listroom():
Wilfried Göesgens [Sat, 20 Mar 2010 11:40:41 +0000 (11:40 +0000)]
* imap_listroom():
* use a nice name for buf
* don't use strcat, utilize that we know the size of string constants

14 years ago* imap_append(): rename buffer, don't use it for several purposes
Wilfried Göesgens [Sat, 20 Mar 2010 11:29:35 +0000 (11:29 +0000)]
* imap_append(): rename buffer, don't use it for several purposes

14 years ago* string_append_c(): use another name for buf
Wilfried Göesgens [Sat, 20 Mar 2010 11:20:24 +0000 (11:20 +0000)]
* string_append_c(): use another name for buf
* imap_roomname():
  * 256 is double ROOMNAMELEN; calculate it here to show the relation in place
  * extract_token() gives us -1 or the stringlength, use it instead of doing another strlen a line below
  * use safestrncpy()
* do_imap_match():
  * while lowercasing run till \0 rather than doing strlen above
  * respect the size of the target buffer...
  * For-loop: assign pointers here, since we start using them here; use IsEmptyStr all over the place (also some forgotten ones...)

14 years ago* rename another buf
Wilfried Göesgens [Sat, 20 Mar 2010 11:01:13 +0000 (11:01 +0000)]
* rename another buf

14 years ago* Fixed some syntax errors in de.po:
Art Cancro [Sat, 20 Mar 2010 00:25:36 +0000 (00:25 +0000)]
* Fixed some syntax errors in de.po:

14 years ago* give static buffers either a meaningfull name or/and respect their size in write...
Wilfried Göesgens [Fri, 19 Mar 2010 22:47:44 +0000 (22:47 +0000)]
* give static buffers either a meaningfull name or/and respect their size in write operations.

14 years ago* libcitadel internal version number is now 7.80
Art Cancro [Fri, 19 Mar 2010 17:29:27 +0000 (17:29 +0000)]
* libcitadel internal version number is now 7.80
* citadel and webcit now require libcitadel 7.80
* webcit now requires citadel 7.80

14 years ago* sock_getln() should return the length of the string read, not bool for fail / success
Wilfried Göesgens [Thu, 18 Mar 2010 20:49:05 +0000 (20:49 +0000)]
* sock_getln() should return the length of the string read, not bool for fail / success

14 years ago* fix memleak
Wilfried Göesgens [Thu, 18 Mar 2010 00:25:01 +0000 (00:25 +0000)]
* fix memleak

14 years ago* CtdlClientGetLine(): we don't support Error while SSL I/O; remove it.
Wilfried Göesgens [Wed, 17 Mar 2010 22:52:36 +0000 (22:52 +0000)]
* CtdlClientGetLine(): we don't support Error while SSL I/O; remove it.
* client_readline_sslbuffer() put in Pos from the outside
* client_readline_sslbuffer() rewrite contents with StrBufTCP_read_buffered_line_fast() as sample

14 years ago* client_read_sslblob(): don't leave CC->Pos on an invalid position
Wilfried Göesgens [Wed, 17 Mar 2010 19:14:29 +0000 (19:14 +0000)]
* client_read_sslblob(): don't leave CC->Pos on an invalid position

14 years ago* some null'ing of our debug codes
Wilfried Göesgens [Wed, 17 Mar 2010 19:13:19 +0000 (19:13 +0000)]
* some null'ing of our debug codes

14 years ago* CtdlFetchMessage(): don't use strdup on a buffer we also can steal; this saves...
Wilfried Göesgens [Tue, 16 Mar 2010 23:37:38 +0000 (23:37 +0000)]
* CtdlFetchMessage(): don't use strdup on a buffer we also can steal; this saves us one strlen, one malloc, and one memcpy.

14 years ago* CtdlOutputPreLoadedMsg: use length calculated by safestrncpy instead of doing strle...
Wilfried Göesgens [Tue, 16 Mar 2010 23:05:22 +0000 (23:05 +0000)]
* CtdlOutputPreLoadedMsg: use length calculated by safestrncpy instead of doing strlen on each loop iteration

14 years ago* free some forgotten buffers
Wilfried Göesgens [Tue, 16 Mar 2010 22:03:44 +0000 (22:03 +0000)]
* free some forgotten buffers

14 years ago* fix imap uid fetching:
Wilfried Göesgens [Tue, 16 Mar 2010 21:27:26 +0000 (21:27 +0000)]
* fix imap uid fetching:
  - imap_strip_headers() : fix loading of the line from the buffer
  - imap_strip_headers() : split evaluation for headers_not/headers so we can more easily determine and abort if we want to print the header
  - imap_strip_headers() : if ptr IS StrBufNotNULL we're done reading headers
  - imap_fetch_body() : partial has to be a StrBuf too if its source is; adjust processing accordingly

14 years ago* add iodbg switch to debian scripts
Wilfried Göesgens [Tue, 16 Mar 2010 21:19:08 +0000 (21:19 +0000)]
* add iodbg switch to debian scripts

14 years ago* StrBufReplaceToken(): source and dest of move operation was wrong
Wilfried Göesgens [Tue, 16 Mar 2010 21:18:09 +0000 (21:18 +0000)]
* StrBufReplaceToken(): source and dest of move operation was wrong

14 years ago* StrBufStripAllBut(): cut at the right border not one char in front of it
Wilfried Göesgens [Tue, 16 Mar 2010 19:46:30 +0000 (19:46 +0000)]
* StrBufStripAllBut(): cut at the right border not one char in front of it

14 years ago* move the instant death to USR2 as dave questioned
Wilfried Göesgens [Tue, 16 Mar 2010 18:58:35 +0000 (18:58 +0000)]
* move the instant death to USR2 as dave questioned

14 years ago* we did that +1 two lines above to avaid infinite loops
Wilfried Göesgens [Mon, 15 Mar 2010 07:36:45 +0000 (07:36 +0000)]
* we did that +1 two lines above to avaid infinite loops

14 years ago* move the pointer one to the right, else we will loop infinite.
Wilfried Göesgens [Sun, 14 Mar 2010 23:28:02 +0000 (23:28 +0000)]
* move the pointer one to the right, else we will loop infinite.
-- Diese und die folgenden Zeilen werden ignoriert --

M    lib/stringbuf.c

14 years ago* exit citserver on SIG_USR1 instantly, so we have a clean exit hook for profiling...
Wilfried Göesgens [Sun, 14 Mar 2010 22:31:07 +0000 (22:31 +0000)]
* exit citserver on SIG_USR1 instantly, so we have a clean exit hook for profiling etc.

14 years ago* Call getnameinfo() without the flag that suppresses name lookups
Art Cancro [Sun, 14 Mar 2010 02:56:55 +0000 (02:56 +0000)]
* Call getnameinfo() without the flag that suppresses name lookups

14 years ago* More tweaks to locate_host() but we still need to work on this because it does...
Art Cancro [Sat, 13 Mar 2010 20:11:20 +0000 (20:11 +0000)]
* More tweaks to locate_host() but we still need to work on this because it does not resolve the host name.

14 years ago* Port locate_host() to IPv6
Art Cancro [Sat, 13 Mar 2010 19:58:57 +0000 (19:58 +0000)]
* Port locate_host() to IPv6

14 years ago* migrate redirect_buffer logic to StrBuf, valgrind reported some related errors.
Wilfried Göesgens [Sat, 13 Mar 2010 18:04:48 +0000 (18:04 +0000)]
* migrate redirect_buffer logic to StrBuf, valgrind reported some related errors.
* migrate the creation of bounce messages to strbuf

14 years ago* IPv6 experiment. -DCTDL_IPV6 to enable. Disabled otherwise.
Art Cancro [Sat, 13 Mar 2010 17:05:56 +0000 (17:05 +0000)]
* IPv6 experiment.  -DCTDL_IPV6 to enable.  Disabled otherwise.

14 years ago* add StrBufPook which blobs out a sub-part of the string
Wilfried Göesgens [Sat, 13 Mar 2010 09:56:00 +0000 (09:56 +0000)]
* add StrBufPook which blobs out a sub-part of the string
* add StrBufStripAllBut, which aims to replace stripallbut, whose functionality is not yet all clear to me.
* add NULL protection to StrBufSub

14 years ago* upsi, forgot to move that flag
Wilfried Göesgens [Fri, 12 Mar 2010 21:48:45 +0000 (21:48 +0000)]
* upsi, forgot to move that flag

14 years ago* casting int to char* doesn't work out on 64 bit architectures
Wilfried Göesgens [Fri, 12 Mar 2010 20:26:08 +0000 (20:26 +0000)]
* casting int to char* doesn't work out on 64 bit architectures
* pass in a structure instead of casting stuf around all over the place

14 years ago* Do not reinsert the existing wiki page when uploading an attachment. Fixes bug...
Art Cancro [Fri, 12 Mar 2010 16:58:54 +0000 (16:58 +0000)]
* Do not reinsert the existing wiki page when uploading an attachment.  Fixes bug 537.

14 years ago* make uid fetch and friends dynamic in size
Wilfried Göesgens [Thu, 11 Mar 2010 20:33:17 +0000 (20:33 +0000)]
* make uid fetch and friends dynamic in size

14 years ago* add function to replace a sub snippet of a string
Wilfried Göesgens [Tue, 9 Mar 2010 09:49:48 +0000 (09:49 +0000)]
* add function to replace a sub snippet of a string

14 years ago* if we receive a text\n000 its a legal message. don't fright the user with "unexpect...
Wilfried Göesgens [Sun, 7 Mar 2010 19:51:28 +0000 (19:51 +0000)]
* if we receive a text\n000 its a legal message. don't fright the user with "unexpected end of message" rather say "Empty Message". this closes #394

14 years ago* replace rewrite_ctdl_sieve_config()s use of malloc/realloc/strlen/sprintf by StrBuf...
Wilfried Göesgens [Sun, 7 Mar 2010 09:48:49 +0000 (09:48 +0000)]
* replace rewrite_ctdl_sieve_config()s use of malloc/realloc/strlen/sprintf by StrBuf operations. They fit in here perfect.

14 years ago* Never mind ... I understand now. Messages which were copied *in* by code between...
Art Cancro [Sun, 7 Mar 2010 05:01:27 +0000 (05:01 +0000)]
* Never mind ... I understand now.  Messages which were copied *in* by code between r8300 and r8431 are corrupt on-disk and cannot be rendered.  Backed out my last change.

14 years ago* msgbase.c now contains both the new and old versions of CtdlOutputPreLoadedMsg...
Art Cancro [Sun, 7 Mar 2010 00:19:01 +0000 (00:19 +0000)]
* msgbase.c now contains both the new and old versions of CtdlOutputPreLoadedMsg() so that I can work on other things while the new version is debugged.  define NEW_COPLM to get the new version, otherwise you get the one from r8422.

14 years ago* fix convert_internet_message_buf(); we forgot to append a newline here
Wilfried Göesgens [Sat, 6 Mar 2010 12:56:21 +0000 (12:56 +0000)]
* fix convert_internet_message_buf(); we forgot to append a newline here
* calculate the body start pos while iterating, so we can react the same way we did before

14 years ago* New parameter to CtdlSaveMsgPointersInRoom() to suppress the reference count adjust...
Art Cancro [Fri, 5 Mar 2010 21:19:07 +0000 (21:19 +0000)]
* New parameter to CtdlSaveMsgPointersInRoom() to suppress the reference count adjustment.  To be used ONLY when we're going to rewrite the metadata manually.  Used ONLY by serv_migrate.  Everyone else HANDS OFF.

14 years ago* fix off by one while copying email headers
Wilfried Göesgens [Thu, 4 Mar 2010 23:19:24 +0000 (23:19 +0000)]
* fix off by one while copying email headers
* check for CRLF regardles of what the caller is telling us, we did it like that in advance too.

14 years ago* Fix rooms.c call to citedit()
Art Cancro [Thu, 4 Mar 2010 20:02:46 +0000 (20:02 +0000)]
* Fix rooms.c call to citedit()

14 years ago* cleanup
Art Cancro [Thu, 4 Mar 2010 15:23:06 +0000 (15:23 +0000)]
* cleanup

14 years ago* citedit() does not make use of the client's IPC context. Removing that parameter.
Art Cancro [Thu, 4 Mar 2010 15:09:52 +0000 (15:09 +0000)]
* citedit() does not make use of the client's IPC context.  Removing that parameter.

14 years ago* Removed code from serv_chat.c that checks to see whether the final character was...
Art Cancro [Wed, 3 Mar 2010 05:29:25 +0000 (05:29 +0000)]
* Removed code from serv_chat.c that checks to see whether the final character was a newline.  Moved it to memfmout() instead.  memfmout() is now guaranteed to output a newline as its final character *if* it outputs any data at all.

14 years ago* Changed strings to 'First Name' and 'Last Name' in the vcard editor to avoid namesp...
Art Cancro [Wed, 3 Mar 2010 05:17:28 +0000 (05:17 +0000)]
* Changed strings to 'First Name' and 'Last Name' in the vcard editor to avoid namespace conflict with the strings 'First' and 'Last' in the bbsview.  Also changed these strings in all existing localizations in order to avoid losing them.

14 years ago* don't use strchr to find the end of the email header; instead iterate over it until...
Wilfried Göesgens [Tue, 2 Mar 2010 22:59:44 +0000 (22:59 +0000)]
* don't use strchr to find the end of the email header; instead iterate over it untill we run into it anyway

14 years ago* #if-out the buffered-read-debug-o-matic
Wilfried Göesgens [Tue, 2 Mar 2010 22:58:17 +0000 (22:58 +0000)]
* #if-out the buffered-read-debug-o-matic

14 years ago* Slightly more computationally efficient version of memfmout() that doesn't use...
Art Cancro [Tue, 2 Mar 2010 20:10:40 +0000 (20:10 +0000)]
* Slightly more computationally efficient version of memfmout() that doesn't use cprintf() and doesn't switch into kernel space one character at a time.

14 years ago* Replaced memfmout() with a much simpler version that doesn't contain unneeded fmout...
Art Cancro [Tue, 2 Mar 2010 18:11:58 +0000 (18:11 +0000)]
* Replaced memfmout() with a much simpler version that doesn't contain unneeded fmout() cruft.

14 years ago* The PEXP command has been deprecated for ten years and no one is using it. Removin...
Art Cancro [Tue, 2 Mar 2010 16:43:20 +0000 (16:43 +0000)]
* The PEXP command has been deprecated for ten years and no one is using it.  Removing this command.

14 years ago* Eliminate an unused variable
Art Cancro [Tue, 2 Mar 2010 04:58:17 +0000 (04:58 +0000)]
* Eliminate an unused variable

14 years ago* add configure detection for solaris localtime_r, it needs to know the size of the...
Wilfried Göesgens [Mon, 1 Mar 2010 20:50:38 +0000 (20:50 +0000)]
* add configure detection for solaris localtime_r, it needs to know the size of the buffer

14 years ago* forgot to commit this: add CTX_STRBUFARR
Wilfried Göesgens [Mon, 1 Mar 2010 20:44:59 +0000 (20:44 +0000)]
* forgot to commit this: add CTX_STRBUFARR

14 years ago* incooperate Stefan Schwarz' sugestions
Wilfried Göesgens [Mon, 1 Mar 2010 20:15:29 +0000 (20:15 +0000)]
* incooperate Stefan Schwarz' sugestions
* work out remaining fuzzies

14 years ago* defines for pop aggregation columns
Wilfried Göesgens [Sun, 28 Feb 2010 22:09:45 +0000 (22:09 +0000)]
* defines for pop aggregation columns

14 years ago* fix register to allow escapers
Wilfried Göesgens [Sun, 28 Feb 2010 21:57:33 +0000 (21:57 +0000)]
* fix register to allow escapers

14 years ago* add generic lists with strings
Wilfried Göesgens [Sun, 28 Feb 2010 21:33:29 +0000 (21:33 +0000)]
* add generic lists with strings
* use them for the configs, since there is no way to say how many items are in the list

14 years ago* ups wrong varname
Wilfried Göesgens [Sun, 28 Feb 2010 19:47:25 +0000 (19:47 +0000)]
* ups wrong varname

14 years ago* general way to do retrieve / save autopurger data
Wilfried Göesgens [Sun, 28 Feb 2010 19:30:27 +0000 (19:30 +0000)]
* general way to do retrieve / save autopurger data

14 years ago* add proper error handling to room netconfig loading
Wilfried Göesgens [Sun, 28 Feb 2010 19:29:31 +0000 (19:29 +0000)]
* add proper error handling to room netconfig loading

14 years ago* add macro for use of ConstStr as parameter
Wilfried Göesgens [Sun, 28 Feb 2010 19:28:10 +0000 (19:28 +0000)]
* add macro for use of ConstStr as parameter

14 years ago* add handler to get the value or string representation of a define
Wilfried Göesgens [Sun, 28 Feb 2010 19:27:30 +0000 (19:27 +0000)]
* add handler to get the value or string representation of a define

14 years ago* add const string evaluator
Wilfried Göesgens [Sun, 28 Feb 2010 19:26:43 +0000 (19:26 +0000)]
* add const string evaluator

14 years ago* use the just commited defines; append -policy to the commandnames so its uniq
Wilfried Göesgens [Sun, 28 Feb 2010 15:11:40 +0000 (15:11 +0000)]
* use the just commited defines; append -policy to the commandnames so its uniq

14 years ago* add defines for the autopurger tokens
Wilfried Göesgens [Sun, 28 Feb 2010 15:09:07 +0000 (15:09 +0000)]
* add defines for the autopurger tokens

14 years ago* add COND:FLOOR:ISSUBROOM to detect whether the current room is on thet floor we...
Wilfried Göesgens [Sun, 28 Feb 2010 10:32:19 +0000 (10:32 +0000)]
* add COND:FLOOR:ISSUBROOM to detect whether the current room is on thet floor we're iterating

14 years ago* put is_https into a COND:IS_HTTPS
Wilfried Göesgens [Sat, 27 Feb 2010 23:17:19 +0000 (23:17 +0000)]
* put is_https into a COND:IS_HTTPS

14 years ago* whops, wrong param offset; allow parameter
Wilfried Göesgens [Sat, 27 Feb 2010 22:25:10 +0000 (22:25 +0000)]
* whops, wrong param offset; allow parameter

14 years ago* implement ITERATE:THISROOM:GNET
Wilfried Göesgens [Sat, 27 Feb 2010 22:18:24 +0000 (22:18 +0000)]
* implement ITERATE:THISROOM:GNET

14 years ago* Hail X-Macros! use typed enums instead of plain strings to generate our keys
Wilfried Göesgens [Sat, 27 Feb 2010 12:46:22 +0000 (12:46 +0000)]
* Hail X-Macros! use typed enums instead of plain strings to generate our keys

14 years ago* macro to get a string out of a define / enum
Wilfried Göesgens [Sat, 27 Feb 2010 12:45:36 +0000 (12:45 +0000)]
* macro to get a string out of a define / enum

14 years ago* ups, forgot to commit this; make memreadline const
Wilfried Göesgens [Sat, 27 Feb 2010 12:45:01 +0000 (12:45 +0000)]
* ups, forgot to commit this; make memreadline const

14 years ago* ups. don't need the switch anymore
Wilfried Göesgens [Sat, 27 Feb 2010 12:19:27 +0000 (12:19 +0000)]
* ups. don't need the switch anymore

14 years ago* switch room types to defines; no strcmp needed anymore.
Wilfried Göesgens [Sat, 27 Feb 2010 12:11:55 +0000 (12:11 +0000)]
* switch room types to defines; no strcmp needed anymore.

14 years ago* use eUsrAxlvl all over the place
Wilfried Göesgens [Fri, 26 Feb 2010 18:11:39 +0000 (18:11 +0000)]
* use eUsrAxlvl all over the place

14 years ago* utilize user enum, forward it into the templates as define
Wilfried Göesgens [Fri, 26 Feb 2010 17:43:27 +0000 (17:43 +0000)]
* utilize user enum, forward it into the templates as define

14 years ago* add user accesslevel enum
Wilfried Göesgens [Fri, 26 Feb 2010 17:39:48 +0000 (17:39 +0000)]
* add user accesslevel enum

14 years ago* add conditionals for the QR2 flagset
Wilfried Göesgens [Thu, 25 Feb 2010 23:27:38 +0000 (23:27 +0000)]
* add conditionals for the QR2 flagset

14 years ago* rework imap tokenizer, we no longer copy the stuff around, we keep a reference...
Wilfried Göesgens [Thu, 25 Feb 2010 22:43:57 +0000 (22:43 +0000)]
* rework imap tokenizer, we no longer copy the stuff around, we keep a reference in the source buffer
* we may have "unlimited" numbers of tokens
* spread the change of ConstStr all over the imap server
* lots of consts all over the whole place

14 years ago* remove header of a function which was moved to libcitadel a while ago
Wilfried Göesgens [Thu, 25 Feb 2010 19:05:04 +0000 (19:05 +0000)]
* remove header of a function which was moved to libcitadel a while ago
* if UBER_VERBOSE_DEBUGGING is defined, wc_printf will wrap its output with File:Function:Line[string]

14 years agoFix HaveMoreLinesWaiting. Fixes IG's problem with async.
Dave West [Thu, 25 Feb 2010 13:19:11 +0000 (13:19 +0000)]
Fix HaveMoreLinesWaiting. Fixes IG's problem with async.

14 years ago* Working on async
Art Cancro [Thu, 25 Feb 2010 05:56:07 +0000 (05:56 +0000)]
* Working on async

14 years ago* Noticed that when serv_chat.c sets async_waiting to 1, it also checks to see if...
Art Cancro [Thu, 25 Feb 2010 05:21:39 +0000 (05:21 +0000)]
* Noticed that when serv_chat.c sets async_waiting to 1, it also checks to see if the target session is in CON_IDLE, and if so, switches it to CON_READY.  serv_xmpp.c now does this as well.  Also unified this action in both modules by creating a shared function called set_async_waiting().

14 years ago* Fixed some warnings
Art Cancro [Wed, 24 Feb 2010 17:47:17 +0000 (17:47 +0000)]
* Fixed some warnings

14 years agoFix async messages (hopefully).
Dave West [Wed, 24 Feb 2010 16:32:08 +0000 (16:32 +0000)]
Fix async messages (hopefully).

14 years ago* In the extremely unlikely event that CtdlGetContextArray() returns NULL, set the...
Art Cancro [Tue, 23 Feb 2010 20:14:30 +0000 (20:14 +0000)]
* In the extremely unlikely event that CtdlGetContextArray() returns NULL, set the number of sessions to 0 instead of undefined.

14 years ago* Tweaked some of the XMPP stanzas to include a valid 'to=' parameter. The presence...
Art Cancro [Tue, 23 Feb 2010 16:28:58 +0000 (16:28 +0000)]
* Tweaked some of the XMPP stanzas to include a valid 'to=' parameter.  The presence of online buddies at login time is now working again in the current version of Pidgin.  Unsolicited events are still not being received at all, however.  This includes incoming instant messages and presence/nonpresence updates which occur during the session.

14 years ago* More XMPP tweaks, none of which fixed our current batch of problems
Art Cancro [Tue, 23 Feb 2010 05:17:04 +0000 (05:17 +0000)]
* More XMPP tweaks, none of which fixed our current batch of problems

14 years ago* When an XMPP client closes its stream, close the server's stream and log out the...
Art Cancro [Tue, 23 Feb 2010 04:14:48 +0000 (04:14 +0000)]
* When an XMPP client closes its stream, close the server's stream and log out the session.

14 years ago* make it const baby!
Wilfried Göesgens [Mon, 22 Feb 2010 22:09:44 +0000 (22:09 +0000)]
* make it const baby!

14 years ago* make the user const
Wilfried Göesgens [Mon, 22 Feb 2010 22:02:57 +0000 (22:02 +0000)]
* make the user const