FileSystemForLocal is the Taildrive filesystem exposed to local clients. It provides a unified WebDAV interface to remote Taildrive shares on other nodes.
| 49 | // FileSystemForLocal is the Taildrive filesystem exposed to local clients. It |
| 50 | // provides a unified WebDAV interface to remote Taildrive shares on other nodes. |
| 51 | type FileSystemForLocal struct { |
| 52 | logf logger.Logf |
| 53 | h *compositedav.Handler |
| 54 | listener *connListener |
| 55 | } |
| 56 | |
| 57 | func (s *FileSystemForLocal) startServing() { |
| 58 | hs := &http.Server{Handler: s.h} |
nothing calls this directly
no outgoing calls
no test coverage detected