storj/pkg/rpc/rpcpeer/peer_drpc.go

32 lines
608 B
Go
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
2019-11-01 21:43:24 +00:00
// +build !grpc
package rpcpeer
import (
"context"
"crypto/tls"
"storj.io/drpc/drpcctx"
)
// internalFromContext returns a peer from the context using drpc.
func internalFromContext(ctx context.Context) (*Peer, error) {
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
}