# Abstractions | [◀ Previous](Installation.md) | [Next ▶](Implementation.md) | |:-----------:|---------| The Abstractions package consists of black-boxed functions for P2PRC. ## Functions - ```Init()```: Initializes P2PRC with all the needed configurations. - ```Start()```: Starts p2prc as a server and makes it possible to extend by adding other routes and functionality to P2PRC. - ```MapPort()```: On the local machine the port you want to export to world. - ```StartContainer()```: The machine on the p2p network where you want to spin up a docker container. - ```RemoveContainer(,)```: Terminate container based on the IP address and container name. - ```GetSpecs()```: Get specs of a machine on the network based on the IP address. - ```ViewIPTable()```: View the IP table which about nodes in the network. - ```UpdateIPTable()```: Force update IP table to learn about new nodes faster. --- ### Next Chapter: [Implementation](Implementation.md)