Expand description
§IntelCache Library
The IntelCache Library is meant primarily for rust made clients of IntelCache and the server.
It functions primarily by sending and recieving self::ic_types::IcPacket
s to and from IcServer
with IcClient
.
To view available commands, check the apropriate storage module.
Modules§
Structs§
- IcClient
- The Client interface struct for IntelCache. Used to interact with the server.
- IcServer
- The Server interface struct for IntelCache. It will listen on port 64209 for new clients.
Then for each client, it will create a new thread for the client,
process and return
IcPacket
s to the handled client.
Traits§
- IcModule
- Trait used to create,load and execute module commands which gets parsed from
IcPacket
s.