blob: 34a6ce9a0758cf6aa36c820ee100348bc67f768d [file] [log] [blame]
// Copyright 2015 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 proxy
import (
"v.io/v23/naming"
"v.io/v23/security"
)
// This exprts the internalNew function only for use in the proxy_test package.
func InternalNew(rid naming.RoutingID, p security.Principal, net, addr, pubAddr string) (func(), naming.Endpoint, error) {
return internalNew(rid, p, net, addr, pubAddr)
}