Skip to content

Commit

Permalink
transport: Pass Header metadata to tap handle.
Browse files Browse the repository at this point in the history
  • Loading branch information
pstibrany committed Sep 21, 2023
1 parent 130bc42 commit 35fa329
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/transport/http2_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import (
"github.com/golang/protobuf/proto"
"golang.org/x/net/http2"
"golang.org/x/net/http2/hpack"

"google.golang.org/grpc/internal/grpclog"
"google.golang.org/grpc/internal/grpcutil"
"google.golang.org/grpc/internal/pretty"
Expand Down Expand Up @@ -566,7 +567,7 @@ func (t *http2Server) operateHeaders(frame *http2.MetaHeadersFrame, handle func(
}
if t.inTapHandle != nil {
var err error
if s.ctx, err = t.inTapHandle(s.ctx, &tap.Info{FullMethodName: s.method}); err != nil {
if s.ctx, err = t.inTapHandle(s.ctx, &tap.Info{FullMethodName: s.method, Header: mdata}); err != nil {
t.mu.Unlock()
if t.logger.V(logLevel) {
t.logger.Infof("Aborting the stream early due to InTapHandle failure: %v", err)
Expand Down
6 changes: 6 additions & 0 deletions tap/tap.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,19 @@ package tap

import (
"context"

"google.golang.org/grpc/metadata"
)

// Info defines the relevant information needed by the handles.
type Info struct {
// FullMethodName is the string of grpc method (in the format of
// /package.service/method).
FullMethodName string

// Header contains the header metadata received.
Header metadata.MD

// TODO: More to be added.
}

Expand Down

0 comments on commit 35fa329

Please sign in to comment.