Skip to content

Commit 6bd9946

Browse files
committed
libpod/define/info.go: Remove slirp
Signed-off-by: Lokesh Mandvekar <[email protected]>
1 parent 6f883c4 commit 6bd9946

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

libpod/define/info.go

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,12 @@ type HostInfo struct {
5252
OS string `json:"os"`
5353
// RemoteSocket returns the UNIX domain socket the Podman service is listening on
5454
RemoteSocket *RemoteSocket `json:"remoteSocket,omitempty"`
55-
// RootlessNetworkCmd returns the default rootless network command (slirp4netns or pasta)
55+
// RootlessNetworkCmd returns the default rootless network command (pasta)
5656
RootlessNetworkCmd string `json:"rootlessNetworkCmd"`
5757
RuntimeInfo map[string]any `json:"runtimeInfo,omitempty"`
5858
// ServiceIsRemote is true when the podman/libpod service is remote to the client
5959
ServiceIsRemote bool `json:"serviceIsRemote"`
6060
Security SecurityInfo `json:"security"`
61-
Slirp4NetNS SlirpInfo `json:"slirp4netns"`
6261
Pasta PastaInfo `json:"pasta"`
6362

6463
SwapFree int64 `json:"swapFree"`
@@ -76,13 +75,6 @@ type RemoteSocket struct {
7675
Exists bool `json:"exists"`
7776
}
7877

79-
// SlirpInfo describes the slirp executable that is being used
80-
type SlirpInfo struct {
81-
Executable string `json:"executable"`
82-
Package string `json:"package"`
83-
Version string `json:"version"`
84-
}
85-
8678
// PastaInfo describes the pasta executable that is being used
8779
type PastaInfo struct {
8880
Executable string `json:"executable"`

0 commit comments

Comments
 (0)