You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
562 B
Go
16 lines
562 B
Go
// Copyright 2020 The Mellium Contributors.
|
|
// Use of this source code is governed by the BSD 2-clause
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package websocket implements a WebSocket transport for XMPP.
|
|
package websocket // import "mellium.im/xmpp/websocket"
|
|
|
|
// Various constants used by this package, provided as a convenience.
|
|
const (
|
|
// NS is the XML namespace used by the XMPP subprotocol framing.
|
|
NS = "urn:ietf:params:xml:ns:xmpp-framing"
|
|
|
|
// WSProtocol is the protocol string used during the WebSocket handshake.
|
|
WSProtocol = "xmpp"
|
|
)
|