-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix gitignore, suspect in missing deps
- Loading branch information
Michael Persson
committed
May 2, 2016
1 parent
5874113
commit 72244fa
Showing
3 changed files
with
145 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
.DS_Store | ||
.build | ||
bin | ||
pkg | ||
release | ||
/.build | ||
/bin | ||
/pkg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// Copyright 2016 CoreOS, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package tlsutil | ||
|
||
import ( | ||
"crypto/tls" | ||
"crypto/x509" | ||
"encoding/pem" | ||
"io/ioutil" | ||
) | ||
|
||
// NewCertPool creates x509 certPool with provided CA files. | ||
func NewCertPool(CAFiles []string) (*x509.CertPool, error) { | ||
certPool := x509.NewCertPool() | ||
|
||
for _, CAFile := range CAFiles { | ||
pemByte, err := ioutil.ReadFile(CAFile) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for { | ||
var block *pem.Block | ||
block, pemByte = pem.Decode(pemByte) | ||
if block == nil { | ||
break | ||
} | ||
cert, err := x509.ParseCertificate(block.Bytes) | ||
if err != nil { | ||
return nil, err | ||
} | ||
certPool.AddCert(cert) | ||
} | ||
} | ||
|
||
return certPool, nil | ||
} | ||
|
||
// NewCert generates TLS cert by using the given cert,key and parse function. | ||
func NewCert(certfile, keyfile string, parseFunc func([]byte, []byte) (tls.Certificate, error)) (*tls.Certificate, error) { | ||
cert, err := ioutil.ReadFile(certfile) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
key, err := ioutil.ReadFile(keyfile) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if parseFunc == nil { | ||
parseFunc = tls.X509KeyPair | ||
} | ||
|
||
tlsCert, err := parseFunc(cert, key) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &tlsCert, nil | ||
} |
70 changes: 70 additions & 0 deletions
70
vendor/src/github.com/coreos/etcd/pkg/transport/limit_listen.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// Copyright 2013 The Go 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 transport provides network utility functions, complementing the more | ||
// common ones in the net package. | ||
package transport | ||
|
||
import ( | ||
"errors" | ||
"net" | ||
"sync" | ||
"time" | ||
) | ||
|
||
var ( | ||
ErrNotTCP = errors.New("only tcp connections have keepalive") | ||
) | ||
|
||
// LimitListener returns a Listener that accepts at most n simultaneous | ||
// connections from the provided Listener. | ||
func LimitListener(l net.Listener, n int) net.Listener { | ||
return &limitListener{l, make(chan struct{}, n)} | ||
} | ||
|
||
type limitListener struct { | ||
net.Listener | ||
sem chan struct{} | ||
} | ||
|
||
func (l *limitListener) acquire() { l.sem <- struct{}{} } | ||
func (l *limitListener) release() { <-l.sem } | ||
|
||
func (l *limitListener) Accept() (net.Conn, error) { | ||
l.acquire() | ||
c, err := l.Listener.Accept() | ||
if err != nil { | ||
l.release() | ||
return nil, err | ||
} | ||
return &limitListenerConn{Conn: c, release: l.release}, nil | ||
} | ||
|
||
type limitListenerConn struct { | ||
net.Conn | ||
releaseOnce sync.Once | ||
release func() | ||
} | ||
|
||
func (l *limitListenerConn) Close() error { | ||
err := l.Conn.Close() | ||
l.releaseOnce.Do(l.release) | ||
return err | ||
} | ||
|
||
func (l *limitListenerConn) SetKeepAlive(doKeepAlive bool) error { | ||
tcpc, ok := l.Conn.(*net.TCPConn) | ||
if !ok { | ||
return ErrNotTCP | ||
} | ||
return tcpc.SetKeepAlive(doKeepAlive) | ||
} | ||
|
||
func (l *limitListenerConn) SetKeepAlivePeriod(d time.Duration) error { | ||
tcpc, ok := l.Conn.(*net.TCPConn) | ||
if !ok { | ||
return ErrNotTCP | ||
} | ||
return tcpc.SetKeepAlivePeriod(d) | ||
} |