mirror of
https://github.com/bolkedebruin/rdpgw.git
synced 2026-03-30 23:46:36 +00:00
Rework transports
This commit is contained in:
8
transport/transport.go
Normal file
8
transport/transport.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package transport
|
||||
|
||||
type HttpLayer interface {
|
||||
ReadPacket() (n int, p []byte, err error)
|
||||
WritePacket(b []byte) (n int, err error)
|
||||
Close() error
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user