-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrdpesc.go
41 lines (37 loc) · 897 Bytes
/
rdpesc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// The rdpesc package implements the RDPESC client protocol.
//
// # Introduction
//
// This document specifies an extension (including virtual channels) to the Remote Desktop
// Protocol: File System Virtual Channel Extension for supporting smart card reader-like
// devices.
//
// # Overview
//
// The following figure illustrates a baseline for terminology related to clients and
// servers.
package rdpesc
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.Encode
_ = strings.TrimPrefix
_ = ndr.ZeroString
_ = (*uuid.UUID)(nil)
_ = (*dcerpc.SyntaxID)(nil)
_ = (*errors.Error)(nil)
)
var (
// import guard
GoPackage = "dcom/rdpesc"
)