feat: Waku v2 bridge

Issue #12610
This commit is contained in:
Michal Iskierko
2023-11-12 13:29:38 +01:00
parent 56e7bd01ca
commit 6d31343205
6716 changed files with 1982502 additions and 5891 deletions

View File

@@ -94,6 +94,7 @@ type Protocol struct {
Charset string // irc
ClientID string // msteams
ColorNicks bool // only irc for now
DataDir string // status
Debug bool // general
DebugLevel int // only for irc now
DisableWebPagePreview bool // telegram
@@ -107,6 +108,8 @@ type Protocol struct {
Jid string // xmpp
JoinDelay string // all protocols
Label string // all protocols
ListenPort int // status
ListenAddr string // status
Login string // mattermost, matrix
LogFile string // general
MediaDownloadBlackList []string
@@ -161,7 +164,7 @@ type Protocol struct {
Team string // mattermost, keybase
TeamID string // msteams
TenantID string // msteams
Token string // gitter, slack, discord, api, matrix
Token string // gitter, slack, discord, api, matrix, status
Topic string // zulip
URL string // mattermost, slack // DEPRECATED
UseAPI bool // mattermost, slack
@@ -220,6 +223,7 @@ type BridgeValues struct {
Matrix map[string]Protocol
Slack map[string]Protocol
SlackLegacy map[string]Protocol
Status map[string]Protocol
Steam map[string]Protocol
Gitter map[string]Protocol
XMPP map[string]Protocol