Skip to content
Snippets Groups Projects
Commit 343233b2 authored by rswindell's avatar rswindell
Browse files

services.cfg examples are no longer useful to anyone. Replace with services.ini

examples.
parent 0410c602
No related branches found
No related tags found
No related merge requests found
......@@ -4,11 +4,21 @@
// $Id$
// Example configuration (in ctrl/services.cfg):
// Example configurations (in ctrl/services.ini):
// ActiveUser 11 0-unlimited 0 activeuserservice.js [options]
// [ActiveUser]
// Port=11
// MaxClients=10
// Options=NO_HOST_LOOKUP
// Command=activeuserservice.js
// Options:
// [ActiveUser-UDP]
// Port=11
// MaxClients=10
// Options=UDP | NO_HOST_LOOKUP
// Command=activeuserservice.js
// Command-line options:
// -n to the configuration line to eliminate user age and gender
// information from the query results.
......
......@@ -2,11 +2,6 @@
// Example Synchronet "Static" Service module
// You configure it by adding a line to your ctrl/services.cfg file:
// ;protocol port max_clients options(hex) command-line
// static 8001 10 802 staticservice.js
while(!server.terminated) {
if(server.socket.poll(10)<1)
......
// gopherservice.js
// $Id$
// Synchronet Service for the Gopher Protocol (RFC 1436)
// Example configuration (in ctrl/services.cfg):
// Example configuration (in ctrl/services.ini):
// Gopher 70 0-unlimited 0 gopherservice.js
// [Gopher]
// Port=70
// MaxClients=10
// Options=0
// Command=gopherservice.js
load("sbbsdefs.js");
load("nodedefs.js");
......
......@@ -4,9 +4,18 @@
// $Id$
// Example configuration (in ctrl/services.cfg):
// MSP 18 0-unlimited 0 mspservice.js [options]
// Example configuration (in ctrl/services.ini):
// [MSP]
// Port=18
// MaxClients=10
// Command=mspservice.js
// [MSP-UDP]
// Port=18
// MaxClients=10
// Options=UDP
// Command=mspservice.js
load("sockdefs.js");
load("nodedefs.js");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment