RestartConnections 

    Namespace: SynicSugar.P2P
    Class: ConnectHub

    public void RestartConnections()

    Description 

    Restart to receive packets to the receiving buffer and get a packet from there.
    This is for PauseConnections

    using SynicSugar.P2P;
    using Cysharp.Threading.Tasks;
    
    public class p2pSample {
        void ConnectHubSample(){
            ConnectHub.Instance.RestartConnections();
        }
    }