Documentation ¶
Index ¶
- Variables
- func AppHostPathMapperServerHandle(ctx context.Context, o AppHostPathMapperServer, opNum int, r ndr.Reader) (dcerpc.Operation, error)
- func NewAppHostPathMapperServerHandle(o AppHostPathMapperServer) dcerpc.ServerHandle
- func RegisterAppHostPathMapperServer(conn dcerpc.Conn, o AppHostPathMapperServer, opts ...dcerpc.Option)
- type AppHostPathMapperClient
- type AppHostPathMapperServer
- type MapPathRequest
- type MapPathResponse
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // IAppHostPathMapper interface identifier e7927575-5cc3-403b-822e-328a6b904bee AppHostPathMapperIID = &dcom.IID{Data1: 0xe7927575, Data2: 0x5cc3, Data3: 0x403b, Data4: []byte{0x82, 0x2e, 0x32, 0x8a, 0x6b, 0x90, 0x4b, 0xee}} // Syntax UUID AppHostPathMapperSyntaxUUID = &uuid.UUID{TimeLow: 0xe7927575, TimeMid: 0x5cc3, TimeHiAndVersion: 0x403b, ClockSeqHiAndReserved: 0x82, ClockSeqLow: 0x2e, Node: [6]uint8{0x32, 0x8a, 0x6b, 0x90, 0x4b, 0xee}} // Syntax ID AppHostPathMapperSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: AppHostPathMapperSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
View Source
var (
// import guard
GoPackage = "dcom/iisa"
)
Functions ¶
func NewAppHostPathMapperServerHandle ¶
func NewAppHostPathMapperServerHandle(o AppHostPathMapperServer) dcerpc.ServerHandle
func RegisterAppHostPathMapperServer ¶
func RegisterAppHostPathMapperServer(conn dcerpc.Conn, o AppHostPathMapperServer, opts ...dcerpc.Option)
Types ¶
type AppHostPathMapperClient ¶
type AppHostPathMapperClient interface { // IUnknown retrieval method. Unknown() iunknown.UnknownClient // MapPath operation. MapPath(context.Context, *MapPathRequest, ...dcerpc.CallOption) (*MapPathResponse, error) // AlterContext alters the client context. AlterContext(context.Context, ...dcerpc.Option) error // IPID sets the object interface identifier. IPID(context.Context, *dcom.IPID) AppHostPathMapperClient }
IAppHostPathMapper interface.
type AppHostPathMapperServer ¶
type AppHostPathMapperServer interface { // IUnknown base class. iunknown.UnknownServer // MapPath operation. MapPath(context.Context, *MapPathRequest) (*MapPathResponse, error) }
IAppHostPathMapper server interface.
type MapPathRequest ¶
type MapPathRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` ConfigPath *oaut.String `idl:"name:bstrConfigPath" json:"config_path"` MappedPhysicalPath *oaut.String `idl:"name:bstrMappedPhysicalPath" json:"mapped_physical_path"` }
MapPathRequest structure represents the MapPath operation request
func (*MapPathRequest) MarshalNDR ¶
func (*MapPathRequest) UnmarshalNDR ¶
type MapPathResponse ¶
type MapPathResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` NewPhysicalPath *oaut.String `idl:"name:pbstrNewPhysicalPath" json:"new_physical_path"` // Return: The MapPath return value. Return int32 `idl:"name:Return" json:"return"` }
MapPathResponse structure represents the MapPath operation response
func (*MapPathResponse) MarshalNDR ¶
func (*MapPathResponse) UnmarshalNDR ¶
Click to show internal directories.
Click to hide internal directories.