From 4efde692a2af2d45859361588a894f406a388477 Mon Sep 17 00:00:00 2001 From: Mickael Remond Date: Mon, 4 Nov 2019 16:36:45 +0100 Subject: [PATCH] Add placeholder in README for routing packets and get IQ responses --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 353eee5..82d051b 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,9 @@ config := xmpp.Config{ - [XEP-0355: Namespace Delegation](https://xmpp.org/extensions/xep-0355.html) - [XEP-0356: Privileged Entity](https://xmpp.org/extensions/xep-0356.html) -## Stanza subpackage +## Package overview + +### Stanza subpackage XMPP stanzas are basic and extensible XML elements. Stanzas (or sometimes special stanzas called 'nonzas') are used to leverage the XMPP protocol features. During a session, a client (or a component) and a server will be exchanging stanzas @@ -73,6 +75,14 @@ implement your own extensions directly in your own application. To learn more about the stanza package, you can read more in the [stanza package documentation](https://github.com/FluuxIO/go-xmpp/blob/master/stanza/README.md). +### Router + +TODO + +### Getting IQ response from server + +TODO + ## Examples We have several [examples](https://github.com/FluuxIO/go-xmpp/tree/master/_examples) to help you get started using