summaryrefslogtreecommitdiff
path: root/xmpp.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-05-11 21:04:04 +0200
committerxengineering <me@xengineering.eu>2023-05-11 21:07:32 +0200
commit5d62378683a516f9e12b0190b46dae475b83e0f5 (patch)
tree1691fb33c8086d34d0678b83cf6e7f40ef2b7775 /xmpp.go
parent1c054d8f976f3f2330aaa31bf72c4584be7e35a4 (diff)
downloadlimox-5d62378683a516f9e12b0190b46dae475b83e0f5.tar
limox-5d62378683a516f9e12b0190b46dae475b83e0f5.tar.zst
limox-5d62378683a516f9e12b0190b46dae475b83e0f5.zip
Do not share memory between limox and xmpp
Diffstat (limited to 'xmpp.go')
-rw-r--r--xmpp.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmpp.go b/xmpp.go
index 5f1d1f9..81de122 100644
--- a/xmpp.go
+++ b/xmpp.go
@@ -15,12 +15,12 @@ const (
XmppConnect
)
-func (l *Limox) xmpp(jid string, pwd string) {
- defer func() { l.XmppEvents <- XmppDisconnect }()
+func xmpp(rxChan chan GuiEvent, txChan chan any, jid string, pwd string) {
+ defer func() { txChan <- XmppDisconnect }()
conn, err := setupConn(jid)
if err != nil {
- l.XmppEvents <- err
+ txChan <- err
return
}
defer conn.Close()
@@ -36,11 +36,11 @@ func (l *Limox) xmpp(jid string, pwd string) {
end := sendStreamStart(enc, jid)
defer sendStreamEnd(enc, end)
- l.XmppEvents <- XmppConnect
+ txChan <- XmppConnect
for {
select {
- case ev := <-l.GuiEvents:
+ case ev := <-rxChan:
switch ev {
case Disconnect:
return