-
Notifications
You must be signed in to change notification settings - Fork 699
refactor: support external drivers for the recent changes #3910
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Next time please split a commit for this
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,15 +92,15 @@ type ConfiguredDriver struct { | |
} | ||
|
||
type Info struct { | ||
DriverName string `json:"driverName"` | ||
CanRunGUI bool `json:"canRunGui,omitempty"` | ||
VsockPort int `json:"vsockPort"` | ||
VirtioPort string `json:"virtioPort"` | ||
InstanceDir string `json:"instanceDir,omitempty"` | ||
Features DriverFeatures `json:"features"` | ||
} | ||
|
||
type DriverFeatures struct { | ||
DynamicSSHAddress bool `json:"dynamicSSHAddress"` | ||
SkipSocketForwarding bool `json:"skipSocketForwarding"` | ||
DriverName string `json:"driverName"` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Name does not seem to be a feature There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks |
||
CanRunGUI bool `json:"canRunGui,omitempty"` | ||
DynamicSSHAddress bool `json:"dynamicSSHAddress"` | ||
SkipSocketForwarding bool `json:"skipSocketForwarding"` | ||
} |