mirror of
https://github.com/getcompanion-ai/computer-host.git
synced 2026-04-15 06:04:38 +00:00
feat: freeze ssh and vnc port contracts
Define the minimum machine networking surface for the next host slice and limit exposed guest ports to SSH and VNC.
This commit is contained in:
parent
04575d111c
commit
4028bb5a1d
3 changed files with 33 additions and 10 deletions
20
contract/networking.go
Normal file
20
contract/networking.go
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
package host
|
||||
|
||||
type MachinePortName string
|
||||
|
||||
type PortProtocol string
|
||||
|
||||
const (
|
||||
MachinePortNameSSH MachinePortName = "ssh"
|
||||
MachinePortNameVNC MachinePortName = "vnc"
|
||||
)
|
||||
|
||||
const (
|
||||
PortProtocolTCP PortProtocol = "tcp"
|
||||
)
|
||||
|
||||
type MachinePort struct {
|
||||
Name MachinePortName `json:"name"`
|
||||
Port uint16 `json:"port"`
|
||||
Protocol PortProtocol `json:"protocol"`
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue