HandleConn handles connections from local WebDAV clients
(conn net.Conn, remoteAddr net.Addr)
| 67 | |
| 68 | // HandleConn handles connections from local WebDAV clients |
| 69 | func (s *FileSystemForLocal) HandleConn(conn net.Conn, remoteAddr net.Addr) error { |
| 70 | return s.listener.HandleConn(conn, remoteAddr) |
| 71 | } |
| 72 | |
| 73 | // SetRemotes sets the complete set of remotes on the given tailnet domain |
| 74 | // using a map of name -> url. If transport is specified, that transport |
nothing calls this directly
no test coverage detected