Old Server Notes: Difference between revisions

From pisswiki
(Created page with "Things you may need to know if you're porting an older version's config over to a new version. --- class hubs { pingfreq 60; connfreq 60; maxclients...")
 
No edit summary
Line 3: Line 3:
---
---


class hubs
    class hubs
{
    {
        pingfreq 60;
            pingfreq 60;
        connfreq 60;
            connfreq 60;
        maxclients 200; /* max servers */
            maxclients 200; /* max servers */
        sendq 20M;
            sendq 20M;
}
    }


---
---

Revision as of 20:40, 11 April 2022

Things you may need to know if you're porting an older version's config over to a new version.

---

   class hubs
   {
           pingfreq 60;
           connfreq 60;
           maxclients 200; /* max servers */
           sendq 20M;
   }

---