ci/woodpecker/push/dco Pipeline was successful
Details
ci/woodpecker/push/test Pipeline was successful
Details
ci/woodpecker/push/validate Pipeline was successful
Details
ci/woodpecker/pr/dco Pipeline was successful
Details
ci/woodpecker/push/integration Pipeline failed
Details
ci/woodpecker/pr/test Pipeline was successful
Details
ci/woodpecker/pr/validate Pipeline was successful
Details
ci/woodpecker/pr/integration Pipeline failed
Details
Previously if you attempted to dial a connection without implicit TLS explicitly disabled (either in the library or in the services DNS records) we would attempt to dial all connections *with* TLS and fail to fallback to not using it. Instead, only attempt implicit TLS on connections that were looked up with the appropriate SRV record and skip it for connections that expect STARTTLS. Fixes #383 Signed-off-by: Sam Whited <sam@samwhited.com> |
||
---|---|---|
.woodpecker | ||
blocklist | ||
bookmarks | ||
carbons | ||
color | ||
commands | ||
component | ||
crypto | ||
delay | ||
design | ||
dial | ||
disco | ||
docs | ||
examples | ||
form | ||
forward | ||
history | ||
ibb | ||
internal | ||
jid | ||
muc | ||
mux | ||
oob | ||
paging | ||
ping | ||
pubsub | ||
receipts | ||
roster | ||
s2s | ||
stanza | ||
stream | ||
styling | ||
upload | ||
uri | ||
version | ||
websocket | ||
x509 | ||
xtime | ||
.gitignore | ||
CHANGELOG.md | ||
CONTRIBUTORS | ||
DCO | ||
LICENSE | ||
LICENSE-GO | ||
Makefile | ||
README.md | ||
bind.go | ||
bind_test.go | ||
conn.go | ||
doc.go | ||
echobot_example_test.go | ||
error_test.go | ||
export_test.go | ||
features.go | ||
go.mod | ||
go.sum | ||
handler.go | ||
handler_test.go | ||
negotiator.go | ||
sasl.go | ||
sasl_integration_test.go | ||
sasl_test.go | ||
send_test.go | ||
session.go | ||
session_iq.go | ||
session_message.go | ||
session_message_test.go | ||
session_presence.go | ||
session_presence_test.go | ||
session_test.go | ||
sessionstate_string.go | ||
starttls.go | ||
starttls_test.go | ||
tools.go |
README.md
XMPP
An Extensible Messaging and Presence Protocol (XMPP) library in Go. XMPP (sometimes known as "Jabber") is a protocol for near-real-time data transmission, most commonly used for instant messaging, video chat signaling, and related functionality. This library aims to provide general protocol support with additional packages that focus on modern instant messaging use cases.
This library supports instant messaging features such as:
- Individual and group chat,
- Blocking and unblocking users,
- Forms and commands (eg. for controlling bots and gateways),
- Retrieving message history,
- General publish-subscribe semantics for storing state and data,
- Parsing simple text styling (eg. bold, italic, quotes, etc.),
- and more!
To use it in your project, import it (or any of its other packages) like so:
import mellium.im/xmpp
If you're looking to get started and need some help, see the API docs or
look in the examples/
tree for several simple usage examples.
If you'd like to contribute to the project, see CONTRIBUTING.md.
License
The package may be used under the terms of the BSD 2-Clause License a copy of which may be found in the file "LICENSE". Some code in this package has been copied from Go and is used under the terms of Go's modified BSD license, a copy of which can be found in the LICENSE-GO file.
Unless you explicitly state otherwise, any contribution submitted for inclusion in the work by you shall be licensed as above, without any additional terms or conditions.