(config *ClusterConfig, passwords map[string]string)
| 262 | } |
| 263 | |
| 264 | func (e encryptedConnection) ClusterConfig(config *ClusterConfig, passwords map[string]string) { |
| 265 | e.folderKeys.setPasswords(e.keyGen, passwords) |
| 266 | e.conn.ClusterConfig(config, passwords) |
| 267 | } |
| 268 | |
| 269 | func (e encryptedConnection) Close(err error) { |
| 270 | e.conn.Close(err) |
nothing calls this directly
no test coverage detected