2019-09-19 05:46:39 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package rpcpeer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
|
|
|
|
"storj.io/drpc/drpcctx"
|
|
|
|
)
|
|
|
|
|
2019-11-01 23:04:23 +00:00
|
|
|
// drpcInternalFromContext returns a peer from the context using drpc.
|
|
|
|
func drpcInternalFromContext(ctx context.Context) (*Peer, error) {
|
2019-09-19 05:46:39 +01:00
|
|
|
tr, ok := drpcctx.Transport(ctx)
|
|
|
|
if !ok {
|
|
|
|
return nil, Error.New("unable to get drpc peer from context")
|
|
|
|
}
|
|
|
|
|
|
|
|
conn, ok := tr.(*tls.Conn)
|
|
|
|
if !ok {
|
|
|
|
return nil, Error.New("drpc transport is not a *tls.Conn")
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Peer{
|
|
|
|
Addr: conn.RemoteAddr(),
|
|
|
|
State: conn.ConnectionState(),
|
|
|
|
}, nil
|
|
|
|
}
|