repositorypackage
0.0.0-20250106055825-1f02cd9e23bf
Repository: https://github.com/moatasemgamal/gofreerdp.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
GoFreeRDP
A wrapper or adapter for freerdp version 3.x command line interface in go lang
Usage
package main
import "github.com/moatasemgamal/gofreerdp"
func main(){
freeRDP, _ := gofreerdp.Init(gofreerdp.DisplayServer_Xorg)
rdpConf := &gofreerdp.RDPConfig{
Addr: "192.168.100.100", // or with port "192.168.100.100:3389"
Username: "User",
Password: "Pass",
}
freeRDP.SetConfig(config)
freeRDP.Run() // build the command and execute it
}