blob: 9dc8d064d479a9e7b110716b898d931143adfc23 [file] [log] [blame]
// Copyright 2016 The Vanadium 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 httplib
import (
"bytes"
"golang.org/x/net/trace"
"v.io/v23/context"
"v.io/v23/rpc"
v23_http "v.io/v23/services/http"
"v.io/x/ref/services/http/httplib"
)
type httpService struct{}
func (f *httpService) RawDo(_ *context.T, _ rpc.ServerCall, req v23_http.Request) (
data []byte, err error) {
buf := bytes.NewBuffer(data)
http_req := httplib.HTTPRequestFromVDLRequest(req)
trace.Render(buf, http_req, false)
return buf.Bytes(), nil
}
func NewHttpService() interface{} {
return v23_http.HttpServer(&httpService{})
}