Software /
code /
prosody
Annotate
.hgignore @ 10654:a2bd6e85a457
mod_ping: Fix double response to internal ping
When responding to a ping from elsewhere in the same Prosody the send
function will be host_send from core.hostmanager, which does not return
anything. Tailcalling it therefore lets the iq event fall trough to
handle_unhandled_stanza in core.stanza_router, which responds with an
error. This error also goes into handle_unhandled_stanza which discards
it.
Noticed because I have a module that points out when a stanza error
reply is created without a text argument.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 21 Feb 2020 23:30:47 +0100 |
parent | 8345:850c433eb862 |
rev | line source |
---|---|
1296 | 1 syntax: glob |
2 .hgignore | |
7770
f0024972489e
hgignore: Ignore luacheck cache file
Kim Alvefur <zash@zash.se>
parents:
3636
diff
changeset
|
3 .luacheckcache |
1296 | 4 data |
5 local | |
6 www_files | |
7 html/* | |
8 prosody.lua | |
9 prosody.cfg.lua | |
2905
b924d915c4d0
.hgignore: Ignore prosody.version (thanks Florob)
Matthew Wild <mwild1@gmail.com>
parents:
1296
diff
changeset
|
10 prosody.version |
1296 | 11 config.unix |
12 *.patch | |
3636
88e4397e39a9
.hgignore: Ignore *.diff.
Waqas Hussain <waqas20@gmail.com>
parents:
3635
diff
changeset
|
13 *.diff |
1296 | 14 *.orig |
15 *.rej | |
16 *.save | |
17 *~ | |
18 *.o | |
19 *.so | |
20 *.install | |
21 *.pid | |
22 *.log | |
23 *.err | |
24 *.debug | |
3635
72f3619eeabd
.hgignore: Ignore Windows compilation artifacts.
Waqas Hussain <waqas20@gmail.com>
parents:
2905
diff
changeset
|
25 *.dll |
72f3619eeabd
.hgignore: Ignore Windows compilation artifacts.
Waqas Hussain <waqas20@gmail.com>
parents:
2905
diff
changeset
|
26 *.exp |
72f3619eeabd
.hgignore: Ignore Windows compilation artifacts.
Waqas Hussain <waqas20@gmail.com>
parents:
2905
diff
changeset
|
27 *.lib |
72f3619eeabd
.hgignore: Ignore Windows compilation artifacts.
Waqas Hussain <waqas20@gmail.com>
parents:
2905
diff
changeset
|
28 *.obj |
8244
6a27e5f276f7
.hgignore: Add luacov.report.out, luacov.report.out.index and luacov.stats.out
Waqas Hussain <waqas20@gmail.com>
parents:
7770
diff
changeset
|
29 luacov.report.out |
6a27e5f276f7
.hgignore: Add luacov.report.out, luacov.report.out.index and luacov.stats.out
Waqas Hussain <waqas20@gmail.com>
parents:
7770
diff
changeset
|
30 luacov.report.out.index |
6a27e5f276f7
.hgignore: Add luacov.report.out, luacov.report.out.index and luacov.stats.out
Waqas Hussain <waqas20@gmail.com>
parents:
7770
diff
changeset
|
31 luacov.stats.out |