Categorygithub.com/OpenNSO/xmpp
repositorypackage
0.0.0-20200414235152-a965d2c80bce
Repository: https://github.com/opennso/xmpp.git
Documentation: pkg.go.dev

# README

Golang XMPP Server Library

Overview

This is a fork of github.com/agl/xmpp modified for use by an XMPP server.

Goal

A pluggable architecture for writing a golang xmpp server supporting the following specifications:

Usage

$ go build example/server.go
$ ./server -help
Usage of ./server:
  -debug
    	turn on debug logging
  -port int
    	port number to listen on (default 5222)

Creating a self signed certificate

$ openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 3650 -nodes