AddrFilePath returns the path to the shim address file as found in the vmDir. The address file holds the abstract unix socket path at which the shim serves its API.
()
| 70 | // AddrFilePath returns the path to the shim address file as found in the vmDir. The |
| 71 | // address file holds the abstract unix socket path at which the shim serves its API. |
| 72 | func (d Dir) AddrFilePath() string { |
| 73 | return filepath.Join(d.RootPath(), internal.ShimAddrFileName) |
| 74 | } |
| 75 | |
| 76 | // LogFifoPath returns the path to the FIFO for writing shim logs |
| 77 | func (d Dir) LogFifoPath() string { |
no test coverage detected