1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/dns/ddup/files/patch-ddup.c
Edwin Groothuis 89d3eeaeca Update: net/ddup (3.0.1)
this patch set updates ddup to make it conformant w/
	http://clients.dyndns.org/devel/query.php

	major changes where done by robert@castley.com, so, don't
	forget to give him credits in the CVS logs.

PR:		ports/40966
Submitted by:	Cyrille Lefevre <cyrille.lefevre@laposte.net>
2003-02-05 12:21:22 +00:00

49 lines
2.7 KiB
C

--- ddup.c.orig Tue Oct 31 01:13:23 2000
+++ ddup.c Thu Jul 25 07:25:54 2002
@@ -26,25 +26,29 @@
void usage(void)
{
printf("DD-UP version %s by Thomas Gandy and Tom Groves (ddupwww@ddup.org)\n", AGENT_VER);
- printf("Usage: ddup --host host.domain.ext (multiple hosts separated by ,)\n");
- printf(" (host.domain.ext,host2.domain.ext) [--ip address] [--wildcard]\n");
- printf(" [--proxyserv server] [--proxyport port] [--help] [--debug] [--mx mxhost]\n");
- printf(" [--backmx] [--static]\n");
- printf(" --host host.domain.ext : REQUIRED to update.\n");
- printf(" Where host.domain.ext is your domain.\n");
- printf(" eg. gandy.dyndns.org, gandy.ath.cx\n");
- printf(" --ip address : Forces manual ip specification\n");
- printf(" Where address is your IP address.\n");
- printf(" --wildcard : Enables wildcards.\n");
+ printf("Usage: ddup --host host.domain.ext [--ip address] [--wildcard]\n");
+ printf(" [--mx mxhost] [--backmx] [--static | --dynamic | --custom]\n");
+ printf(" [--proxyserv server] [--proxyport port] [--debug]\n");
+ printf(" ddup [--help | --makeconf]\n");
+ printf("\n");
+ printf(" --host host.domain.ext : REQUIRED to update.\n");
+ printf(" Where host.domain.ext is your domain.\n");
+ printf(" Multiple hosts separated by a `,' (comma) may be specified.\n");
+ printf(" e.g. gandy.dyndns.org,gandy.ath.cx\n");
+ printf(" --ip address : Forces manual ip specification\n");
+ printf(" Where address is your IP address.\n");
+ printf(" --wildcard : Enables wildcards.\n");
printf(" --mx mxhost : Sets your MX to mxhost.\n");
printf(" --backmx : Needs --mx and sets mxhost to be a backup MX.\n");
- printf(" --proxyserv server : Uses server as proxy.\n");
- printf(" --proxyport port : connects to proxy with port.\n");
- printf(" --help : Prints this message.\n");
- printf(" --debug : Prints debug output of what is sent to server.\n");
printf(" --static : Use the Static DNS service. (Added by Patrick D.)\n");
- printf("\n");
- printf(" --makeconf : Creates the config file for you. (Base64 Encodes your password)\n");
+ printf(" --dynamic : Use the Dyanmic DNS service. (Added by rwc.)\n");
+ printf(" --custom : Use the Custom DNS service. (Added by rwc.)\n");
+ printf(" --proxyserv server : Uses server as proxy.\n");
+ printf(" --proxyport port : connects to proxy with port.\n");
+ printf(" --debug : Prints debug output of what is sent to server.\n");
+ printf(" --help : Prints this message.\n");
+ printf(" --makeconf : Creates the config file for you.\n");
+ printf(" Base64 Encodes your password.\n");
exit(0);
}