aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge 0.10->trunkMatthew Wild2015-01-2113-17/+370
|\
| * moduleapi: Module API for statsmanagerMatthew Wild2015-01-211-0/+5
| |
| * statsmanager, util.statistics: API changes, remove debuggingMatthew Wild2015-01-212-35/+56
| |
| * statsmanager, prosody: New core module and API for gathering statistics ↵Matthew Wild2015-01-202-0/+76
| | | | | | | | about the running server
| * util.statistics: New library for gathering various kinds of statisticsMatthew Wild2015-01-201-0/+131
| |
| * storagemanager: Remove unused import of error()Matthew Wild2015-01-201-1/+1
| |
| * sessionmanager: Access bare_session and full_sessions through 'prosody'Matthew Wild2015-01-201-2/+2
| |
| * rostermanager: Access bare_sessions through prosody.bare_sessionsMatthew Wild2015-01-201-1/+1
| |
| * portmanager: Remove unused import of pairs()Matthew Wild2015-01-201-1/+1
| |
| * hostmanager: Remove unused import of util.uuidMatthew Wild2015-01-201-1/+0
| |
| * certmanager: Make global variable access explicitMatthew Wild2015-01-201-1/+1
| |
| * mod_carbons: Import XEP-0280 implementation from prosody-modules (sans ↵Kim Alvefur2015-01-161-0/+111
| | | | | | | | compat with older versions of the protocol)
| * util.hex: Pedantic optimization, 1 table lookup per byte instead of 3 ↵Kim Alvefur2015-01-121-7/+13
| | | | | | | | function calls makes it go faster
| * mod_pep: Fire an event when an item is publishedKim Alvefur2014-12-201-3/+7
| |
* | net.server_select: Remove unused codedaurnimator2015-01-191-6/+0
| |
* | net.server_select: Remove socket.sleep call from main loopdaurnimator2015-01-191-8/+0
| | | | | | | | | | | | It's been there since the start; but should really not be required. People can remember an issue with FreeBSD that this solved, but this was a hack solution anyway. If that issue rears it's head again, we will solve it properly.
* | net.server_select: Remove do-nothing os_difftime callsdaurnimator2015-01-191-5/+3
| |
* | net.server_select: In add_task timer callback, use passed in time rather ↵daurnimator2015-01-151-2/+1
| | | | | | | | than re-fetching
* | net.server_select: Fix timers not being fired until another timer fixes (or ↵daurnimator2015-01-151-16/+8
| | | | | | | | 1 second passes)
* | net.cqueues: Fix incorrect version checkdaurnimator2015-01-161-1/+1
| |
* | net.cqueues: Fixes hardcoded timeout for first iterationdaurnimator2015-01-131-11/+16
| | | | | | | | | | This was originally put in place as a fix for what ended up a cqueues bug: https://github.com/wahern/cqueues/issues/40 A check for a cqueues version with the bug fix is included.
* | net.cqueues: Add workaround for luaevent callback getting collecteddaurnimator2015-01-061-1/+5
| |
* | mod_muc: Add muc-add-history event to allow modules to override default ↵Matthew Wild2015-01-061-1/+8
| | | | | | | | history storage
* | Merge 0.10 -> trunkWaqas Hussain2014-12-167-7/+18
|\|
| * mod_admin_telnet: Use the session-specific print functionKim Alvefur2014-12-131-0/+1
| |
| * mod_storage_sql2, util.sql: Set character encoding on every connectKim Alvefur2014-12-112-2/+1
| |
| * mod_blocklist: Fix importKim Alvefur2014-12-091-1/+1
| |
| * mod_http: Log name and base URL of HTTP appsKim Alvefur2014-12-081-0/+1
| |
| * net.http.server: Log names of the events firedKim Alvefur2014-12-081-1/+1
| |
| * mod_bosh: Use util.asyncKim Alvefur2014-12-071-3/+13
| |
* | Merge 0.10->trunkKim Alvefur2014-11-222-10/+8
|\|
| * certmanager, mod_tls: Return final ssl config as third return value (fix for ↵Kim Alvefur2014-11-222-10/+8
| | | | | | | | c6caaa440e74, portmanager assumes non-falsy second return value is an error) (thanks deoren)
* | Merge 0.10->trunkKim Alvefur2014-11-204-20/+36
|\|
| * Merge 0.9->0.10Kim Alvefur2014-11-201-6/+6
| |\
| | * net.http.parser: Fix whitespace/indentationMatthew Wild2014-11-181-5/+5
| | |
| | * net.http.parser: Fix chunked encoding parsing across packet boundaries.daurnimator2014-11-101-1/+1
| | |
| * | mod_tls: Keep ssl config around and attach them to sessionsKim Alvefur2014-11-191-6/+12
| | |
| * | certmanager: Return final ssl config along with ssl context on successKim Alvefur2014-11-191-1/+3
| | |
| * | mod_saslauth: Make it easier to support multiple channel binding methondsKim Alvefur2014-11-191-2/+4
| | |
| * | mod_saslauth: Break out tls-unique channel binding callback so it is ↵Kim Alvefur2014-11-191-5/+10
| | | | | | | | | | | | instantiated once
| * | mod_saslauth: Keep sasl_handler in a local variableKim Alvefur2014-11-191-5/+6
| | |
* | | Merge 0.10->trunkMatthew Wild2014-11-202-2/+6
|\| |
| * | mod_pubsub: Add support for including the publisher in item broadcastsPhilipp Hancke2014-11-202-2/+6
| | |
* | | net.cqueues: Add module that allows use of cqueues while still using ↵daurnimator2014-11-181-0/+65
| | | | | | | | | | | | net.server as main loop
* | | plugins/muc/muc.lib: Allow muc-broadcast-presence event listeners to modify ↵daurnimator2014-11-141-2/+9
| | | | | | | | | | | | nick, actor, reason
* | | plugins/muc/muc.lib: Don't expose actor jids to users when anonymousdaurnimator2014-11-111-27/+39
| | | | | | | | | | | | | | | * * * plugins/muc/muc.lib: Allow event listeners to modify actor
* | | Merge 0.10->trunkKim Alvefur2014-11-095-11/+30
|\| |
| * | Merge 0.9 -> 0.10Kim Alvefur2014-11-092-10/+14
| |\|
| | * net.dns: Try next server if peer name can not be set (thanks wirehack7)Kim Alvefur2014-10-301-6/+10
| | |
| | * net.dns: Return new socket from servfailKim Alvefur2014-10-301-3/+4
| | |