diff options
Diffstat (limited to 'src/main/kotlin/NinePConnection.kt')
-rw-r--r-- | src/main/kotlin/NinePConnection.kt | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/main/kotlin/NinePConnection.kt b/src/main/kotlin/NinePConnection.kt index ee9d5ba..86056eb 100644 --- a/src/main/kotlin/NinePConnection.kt +++ b/src/main/kotlin/NinePConnection.kt @@ -21,6 +21,11 @@ class NinePConnection(netPackTrans: NetworkPacketTransporter) : NinePTranslator val npt: NetworkPacketTransporter = netPackTrans /** + * Has the 9P connection been initialized yet? + */ + private var hasBeenInitialized = false + + /** * Disconnect from the remote host, * * @throws IOException if an I/O error occurred while closing the socket. @@ -76,5 +81,57 @@ class NinePConnection(netPackTrans: NetworkPacketTransporter) : NinePTranslator ) } + override fun version() { + TODO("Not yet implemented") + } + + 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") + } + // TODO: implement methods from NinePTranslator }
\ No newline at end of file |