From a6d3ab5e76c3a09c64c5d20c11ac688a6a3435ed Mon Sep 17 00:00:00 2001 From: Edoardo La Greca Date: Fri, 25 Jul 2025 17:07:19 +0200 Subject: add stubs for other method implementations from NinePTranslator --- src/main/kotlin/NinePConnection.kt | 50 +++++++++++++++++++++++++++++++++++++- 1 file changed, 49 insertions(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/kotlin/NinePConnection.kt b/src/main/kotlin/NinePConnection.kt index 4af46d8..535f20e 100644 --- a/src/main/kotlin/NinePConnection.kt +++ b/src/main/kotlin/NinePConnection.kt @@ -78,7 +78,6 @@ class NinePConnection(netPackTrans: NetworkPacketTransporter) : NinePTranslator ) } - // TODO: implement methods from NinePTranslator /** * Wait for a 9P message with the same tag from the server. * @@ -202,4 +201,53 @@ class NinePConnection(netPackTrans: NetworkPacketTransporter) : NinePTranslator } return null } + + override fun auth() { + TODO("Not yet implemented") + } + + override fun flush() { + TODO("Not yet implemented") + } + + override fun attach() { + TODO("Not yet implemented") + } + + override fun walk(path: String) { + TODO("Not yet implemented") + } + + override fun open(path: String) { + TODO("Not yet implemented") + } + + override fun create(path: String) { + TODO("Not yet implemented") + } + + override fun read(path: String) { + TODO("Not yet implemented") + } + + override fun write(path: String) { + TODO("Not yet implemented") + } + + override fun clunk(path: String) { + TODO("Not yet implemented") + } + + override fun remove(path: String) { + TODO("Not yet implemented") + } + + override fun stat(path: String) { + TODO("Not yet implemented") + } + + override fun wstat(path: String) { + TODO("Not yet implemented") + } + } \ No newline at end of file -- cgit v1.2.3