zmq4: first import

This commit is contained in:
Sebastien Binet 2018-04-13 18:57:57 +02:00
commit a93802af6c
5 changed files with 79 additions and 0 deletions

22
.travis.yml Normal file
View file

@ -0,0 +1,22 @@
language: go
go:
- 1.8.x
- 1.9.x
- 1.10.x
- master
os:
- linux
matrix:
fast_finish: true
allow_failures:
- go: master
sudo: false
notifications:
email:
recipients:
- binet@cern.ch
on_success: always
on_failure: always

23
LICENSE Normal file
View file

@ -0,0 +1,23 @@
Copyright ©2018 The go-zeromq Authors. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the go-zeromq project nor the names of its authors and
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

19
README.md Normal file
View file

@ -0,0 +1,19 @@
# zmq4
[![Build Status](https://travis-ci.org/go-zeromq/zmq4.svg?branch=master)](https://travis-ci.org/go-zeromq/zmq4)
[![GoDoc](https://godoc.org/github.com/go-zeromq/zmq4?status.svg)](https://godoc.org/github.com/go-zeromq/zmq4)
`zmq4` is a pure-Go implementation of ØMQ (ZeroMQ), version 4.
See [zeromq.org](http://zeromq.org) for more informations.
## License
`zmq4` is released under the `BSD-3` license.
## Documentation
Documentation for `zmq4` is served by [GoDoc](https://godoc.org/github.com/go-zeromq/zmq4).

8
zmq4.go Normal file
View file

@ -0,0 +1,8 @@
// Copyright 2018 The go-zeromq Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package zmq4 implements the ØMQ sockets and protocol for ZeroMQ-4.
//
// For more informations, see http://zeromq.org.
package zmq4

7
zmtp/zmtp.go Normal file
View file

@ -0,0 +1,7 @@
// Copyright 2018 The go-zeromq Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package zmtp implements the ZeroMQ Message Transport Protocol as defined
// in https://rfc.zeromq.org/spec:23/ZMTP/.
package zmtp