Check for errors in component connect.

disco_info_form
Mickael Remond 5 years ago
parent e54260ec68
commit b3a6429e0e
No known key found for this signature in database
GPG Key ID: E6F6045D79965AA3

@ -2,6 +2,7 @@ package main
import (
"fmt"
"log"
"gosrc.io/xmpp"
)
@ -9,7 +10,9 @@ import (
func main() {
component := MyComponent{Name: "Test Component", Category: "gateway", Type: "service"}
component.xmpp = &xmpp.Component{Host: "service.localhost", Secret: "mypass"}
_ = component.xmpp.Connect("localhost:8888")
if err := component.xmpp.Connect("localhost:8888"); err != nil {
log.Fatal(err)
}
for {
packet, err := component.xmpp.ReadPacket()

Loading…
Cancel
Save