diff options
author | Edoardo La Greca | 2025-08-06 21:41:38 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-06 21:42:15 +0200 |
commit | 59e3a9e23cb2e81cb1a5ffd044b57538b3071e6c (patch) | |
tree | 2b5fb54b45b789eb6bede4a511d1e6969567024a /src/main/kotlin/Connection.kt | |
parent | 49750d70be34302b30808a34dc0df0a39ada8912 (diff) |
add FIDInfo
Diffstat (limited to 'src/main/kotlin/Connection.kt')
-rw-r--r-- | src/main/kotlin/Connection.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/Connection.kt b/src/main/kotlin/Connection.kt index 6444ade..b916d1b 100644 --- a/src/main/kotlin/Connection.kt +++ b/src/main/kotlin/Connection.kt @@ -31,9 +31,9 @@ class Connection(transLay: TransportLayer) : ProtocolTranslator { private var maxSize: UInt = 0u /** - * Each FID associated with each file. + * Info about FIDs. */ - val fids: Map<UInt, String> = emptyMap() + val fids: FIDInfo = FIDInfo() // 9P constants. val DEFAULT_VERSION = "9P2000" |