diff options
author | Kim Alvefur <zash@zash.se> | 2022-08-19 14:24:31 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-08-19 14:24:31 +0200 |
commit | b79cb49bfba1d64dda54cf7243154624c53b5fb9 (patch) | |
tree | 4490db72d26833fb426ddbedbe7e128487305755 | |
parent | 1f4c6548dcb538d794dab42f1bd8491a720ae5b9 (diff) | |
download | prosody-b79cb49bfba1d64dda54cf7243154624c53b5fb9.tar.gz prosody-b79cb49bfba1d64dda54cf7243154624c53b5fb9.zip |
net.connect: Clear TODO for Happy Eyeballs / RFC 8305, close #1246
Gotta have the DOAP references!
-rw-r--r-- | doc/doap.xml | 1 | ||||
-rw-r--r-- | net/connect.lua | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/doc/doap.xml b/doc/doap.xml index 2bddedd5..cf9e86c6 100644 --- a/doc/doap.xml +++ b/doc/doap.xml @@ -60,6 +60,7 @@ <implements rdf:resource="https://www.rfc-editor.org/info/rfc7395"/> <implements rdf:resource="https://www.rfc-editor.org/info/rfc7590"/> <implements rdf:resource="https://www.rfc-editor.org/info/rfc7673"/> + <implements rdf:resource="https://www.rfc-editor.org/info/rfc8305"/> <implements rdf:resource="https://www.rfc-editor.org/info/rfc9266"/> <implements rdf:resource="https://datatracker.ietf.org/doc/draft-cridland-xmpp-session/"> <!-- since=0.6.0 note=Added in hg:0bbbc9042361 --> diff --git a/net/connect.lua b/net/connect.lua index d85afcff..3cb407a1 100644 --- a/net/connect.lua +++ b/net/connect.lua @@ -3,7 +3,6 @@ local log = require "util.logger".init("net.connect"); local new_id = require "util.id".short; local timer = require "util.timer"; --- TODO #1246 Happy Eyeballs -- FIXME RFC 6724 -- FIXME Error propagation from resolvers doesn't work -- FIXME #1428 Reuse DNS resolver object between service and basic resolver |