Skip to content

Commit

Permalink
license message
Browse files Browse the repository at this point in the history
  • Loading branch information
tidwall committed Nov 2, 2017
1 parent 7a9d0ae commit 99cbc8c
Show file tree
Hide file tree
Showing 16 changed files with 57 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<img
src="logo.png"
src="resources/logo.png"
width="213" height="75" border="0" alt="evio">
<br>
<a href="https://travis-ci.org/tidwall/evio"><img src="https://img.shields.io/travis/tidwall/evio.svg?style=flat-square" alt="Build Status"></a>
Expand Down
4 changes: 4 additions & 0 deletions evio.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package evio

import (
Expand Down
4 changes: 4 additions & 0 deletions evio_net.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package evio

import (
Expand Down
4 changes: 4 additions & 0 deletions evio_other.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

// +build !darwin,!netbsd,!freebsd,!openbsd,!dragonfly,!linux

package evio
Expand Down
4 changes: 4 additions & 0 deletions evio_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package evio

import (
Expand Down
4 changes: 4 additions & 0 deletions evio_translate.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package evio

import (
Expand Down
4 changes: 4 additions & 0 deletions evio_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

// +build netbsd openbsd freebsd darwin dragonfly linux

package evio
Expand Down
4 changes: 4 additions & 0 deletions examples/echo-server/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package main

import (
Expand Down
4 changes: 4 additions & 0 deletions examples/http-server/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package main

import (
Expand Down
4 changes: 4 additions & 0 deletions examples/redis-server/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package main

import (
Expand Down
4 changes: 4 additions & 0 deletions internal/internal_bsd.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

// +build darwin netbsd freebsd openbsd dragonfly

package internal
Expand Down
4 changes: 4 additions & 0 deletions internal/internal_darwin.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package internal

import "syscall"
Expand Down
4 changes: 4 additions & 0 deletions internal/internal_linux.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package internal

import (
Expand Down
4 changes: 4 additions & 0 deletions internal/internal_openbsd.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

package internal

// SetKeepAlive sets the keepalive for the connection
Expand Down
4 changes: 4 additions & 0 deletions internal/internal_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

// +build netbsd freebsd dragonfly linux

package internal
Expand Down
File renamed without changes

0 comments on commit 99cbc8c

Please sign in to comment.