1 const char *default_both_phrases[] = {
2 	"No hostname given!\n",			/* 0 */
3 	"Using Port %v1%\n",
4 	"Could not get host information",
5 	"Official host name: %v1%\n",
6 	"Alias %v1%\n",
7 	"Unsupported address type\n",		/* 5 */
8 	"Socket Failed",
9 	"Connect Failed",
10 	"Connected to %v1%\n",
11 	"%v1%: Errno %v2%\n",
12 	"Socket error: Timed out on Read\n",	/* 10 */
13 	"Socket error: No data to read\n",
14 	"Socket error",
15 	"Unable to block signal %v1%\n",
16 	"Unable to block SIGPIPE, if child dies, we will die\n",
17 	"Out of memory reading %v1%, ignoring\n",	/* 15 */
18 	"Out of memory reading argument file\n",
19 	"Address: %v1%\n",
20 	"Unable to initialize SSL\n",
21 };
22 
23 int nr_both_phrases=sizeof(default_both_phrases)/sizeof(default_both_phrases[0]);
24