mirror of
https://github.com/amitbet/vncproxy.git
synced 2025-04-27 10:50:47 +00:00
35 lines
592 B
Plaintext
35 lines
592 B
Plaintext
@startuml
|
|
Title Vncproxy Architecture
|
|
State VncProxy{
|
|
State ClientPart
|
|
State ServerPart
|
|
state FbsRecorder
|
|
}
|
|
State VncClient
|
|
State VncServer
|
|
|
|
VncClient -right-> ServerPart
|
|
ServerPart -left-> VncClient
|
|
VncServer -left-> ClientPart
|
|
ClientPart -right-> VncServer
|
|
ClientPart -left-> ServerPart
|
|
ServerPart -right-> ClientPart
|
|
|
|
ClientPart -down-> FbsRecorder
|
|
ServerPart -down-> FbsRecorder
|
|
@enduml
|
|
|
|
|
|
@startuml
|
|
Title Vncproxy Fbs Player
|
|
State VncProxy{
|
|
|
|
State ServerPart
|
|
state FbsPlayer
|
|
}
|
|
State VncClient
|
|
VncClient -left-> ServerPart
|
|
ServerPart -right-> VncClient
|
|
|
|
FbsPlayer -up-> ServerPart
|
|
@enduml |