alias.c:	 * & or && should both be supported, each with different
alias.c: *		portion is written back into more_text.
ctcp.c:	char	*port;
ctcp.c:			!(port = next_arg(args, &args)))
ctcp.c:	register_dcc_offer(from, type, description, inetaddr, port, size);
dcc.c:							inet_ntoa(remaddr.sin_addr), ntohs(remaddr.sin_port));
dcc.c:		if ((Client->write = connect_by_number(Client->remport,
dcc.c:				ntohs(remaddr.sin_port));
dcc.c:					 (u_short) ntohs(localaddr.sin_port),
dcc.c:					 (u_short) ntohs(localaddr.sin_port));
dcc.c:dcc_raw_listen(u_short port)
dcc.c:dcc_raw_listen(port)
dcc.c:	u_short	port;
dcc.c:	if (port && port < 1025)
dcc.c:		say("Cannot bind to a privileged port");
dcc.c:	sprintf(PortName, "%d", port);
dcc.c:	locaddr.sin_port = htons(port);
dcc.c:		say("Could not bind port: %s", strerror(errno));
dcc.c:	Client->write = ntohs(locaddr.sin_port);
dcc.c:dcc_raw_connect(char *host, u_short port)
dcc.c:dcc_raw_connect(host, port)
dcc.c:	u_short	port;
dcc.c:	sprintf(PortName, "%d", port);
dcc.c:	Client->remport = port;
dcc.c:	if (do_hook(DCC_RAW_LIST, "%s %s E %d", PortName, host, port))
dcc.c:				host, PortName, port);
dcc.c:	if (--status || (Client->read = connect_by_number(Client->remport,
dcc.c:	SockAddr.sin_port = htons(518);
dcc.c:				Client->remport = ntohs(SockAddr.sin_port);
dcc.c:register_dcc_offer(user, type, description, address, port, size)
dcc.c:	char	*port;
dcc.c:	sscanf(port, "%u", &TempInt);
dcc.c:	Client->remport = TempInt;
dcc.c:		say("DCC %s (%s) request from %s rejected [port = %d]", type, description, user, TempInt);
dcc.c:	if ((u_long) 0 == TempLong || 0 == Client->remport)
dcc.c:			inet_ntoa(remaddr.sin_addr), ntohs(remaddr.sin_port));
dcc.c:	NewClient->remport = remaddr.sin_port;
dcc.c:			inet_ntoa(remaddr.sin_addr), ntohs(remaddr.sin_port));
dcc.c:			inet_ntoa(remaddr.sin_addr), ntohs(remaddr.sin_port));
edit.c:	/* is this more portable? *shrug*. i chose BIG_BUFFER_SIZE+1 
exec.c: * check_wait_status: This waits on child processes, reporting terminations
exec.c:* process index is not valid, an error is reported and 1 is returned.
exec.c:		say("or important details about this!");
file.c: * has effective UID == root, it will then use privileged ports to
gzip.c: * portions of this file are derived from gzip by jean-loup gailly, and
gzip.c:		/* To simplify the code, we support a zip file when alone only.
help.c:	 * I want to remove the else portion of this code, as I
if.c:		yell("Missing THEN portion in IF");
irc.c:int	irc_port = IRC_PORT,			/* port of ircd */
irc.c:   -p <port>\tdefault server connection port (usually 6667)\n\
irc.c:	printf("Please include the version of IRCII (%s) and type of system in the report.\n\r", irc_version);
irc.c:					irc_port = atoi(get_arg(arg, argv[ac],
ircaux.c:#include <support.h>
ircaux.c:		server.sin_port = (unsigned short) htons(service);
ircaux.c:		localaddr.sin_port = 0;
ircaux.c:	/* attempt to bind to a privileged port */
ircaux.c:		int	portnum;
ircaux.c:		for (portnum = 1023; portnum > 600; portnum--)
ircaux.c:			localaddr.sin_port = htons(portnum);
ircaux.c: *          the relative statement and send a report to
ircio.c:	server.sin_port = (unsigned short) htons(service);
ircio.c:		int	portnum;
ircio.c:		for (portnum = 1023; portnum > PRIV_PORT; portnum--)
ircio.c:			localaddr.sin_port = htons(portnum);
ircio.c: * the given port (given as arg 2).  It then accepts input from stdin and
notice.c:		get_server_port(parsing_server_index));
numbers.c:		get_server_port(new_server), -1);
numbers.c: * reset_nickname: when the server reports that the selected nickname is not
screen.c: * Written By Matthew Green, based on portions of window.c
screen.c: * window size proportionality is lost 
screen.c: * portion of the screen.  All windows and status lines are draws.  This does
screen.c: * necessary portions according the the update field of the window. 
screen.c:	 * Unlike most other cases, it is important here to close down
server.c:						/* connect_to_server(server_list[old_serv].name, server_list[old_serv].port, -1);
server.c:				else if (connect_to_server(server_list[i].name, server_list[i].port, -1))
server.c:find_in_server_list(server, port)
server.c:	int	port;
server.c:		if (port && server_list[i].port &&
server.c:		    port != server_list[i].port && port != -1)
server.c: * overwrite flag is true, the port and passwords are updated to the values
server.c:add_to_server_list(server, port, password, nick, overwrite)
server.c:	int	port;
server.c:	if ((from_server = find_in_server_list(server, port)) == -1)
server.c:		server_list[from_server].port = port;
server.c:			server_list[from_server].port = port;
server.c: * "server:portnum:password:nickname".  It the points port to the portnum
server.c: * portion and password to the password portion.  This chews up the original
server.c: * string, so * upon return, name will only point the the name.  If portnum
server.c:parse_server_info(name, port, password, nick)
server.c:		**port,
server.c:	*port = *password = *nick = NULL;
server.c:			*port = (char *) 0;
server.c:			*port = ptr;
server.c: * servername:port 
server.c: * servername:port:password 
server.c:		*port = (char *) 0,
server.c:	int	port_num;
server.c:	/* port_num = irc_port; */
server.c:			parse_server_info(host, &port, &password, &nick);
server.c:			if (port && *port)
server.c:				port_num = atoi(port);
server.c:				if (!port_num)
server.c:					port_num = irc_port;
server.c:				port_num = irc_port;
server.c:			add_to_server_list(host, port_num, password, nick, 0);
server.c:connect_to_server_direct(server_name, port)
server.c:	int	port;
server.c:		new_des = connect_to_unix(port, server_name);
server.c:		new_des = connect_by_number(port, server_name, 1);
server.c:		say("Unable to connect to port %d of server %s: %s", port,
server.c:	add_to_server_list(server_name, port, (char *) 0, (char *) 0, 1);
server.c:	if (port)
server.c:connect_to_server_process(server_name, port)
server.c:	int	port;
server.c:		return (connect_to_server_direct(server_name, port));
server.c:		return (connect_to_server_direct(server_name, port));
server.c:		sprintf(buffer, "%u", port);
server.c:			return (connect_to_server_direct(server_name, port));
server.c:		say("Unable to connect to port %d of server %s: %s",
server.c:			port, server_name, strerror(atoi(ptr)));
server.c:		say("Unable to connect to port %d of server %s: Unknown host",
server.c:							port, server_name);
server.c:		say("Unable to connect to port %d of server %s: Unknown host",
server.c:							port, server_name);
server.c:	add_to_server_list(server_name, port, (char *) 0, (char *) 0, 1);
server.c: * connect_to_server: Given a name and portnumber, this will attempt to
server.c:connect_to_server(server_name, port, c_server)
server.c:	int	port;
server.c:	server_index = find_in_server_list(server_name, port);
server.c:		if (port == -1)
server.c:				port = server_list[server_index].port;
server.c:				port = irc_port;
server.c:		say("Connecting to port %d of server %s", port, server_name);
server.c:			server_index = connect_to_server_process(server_name, port);
server.c:			server_index = connect_to_server_direct(server_name, port);
server.c:		if (port == -1)
server.c:				port = server_list[server_index].port;
server.c:				port = irc_port;
server.c:		say("Connected to port %d of server %s", port, server_name);
server.c:		if (connect_to_server(server_list[server].name, server_list[server].port, primary_server))
server.c:				ret = connect_to_server(server_list[server].name, server_list[server].port, primary_server);
server.c: * read_server_file: reads hostname:portnum:password server information from
server.c:					server_list[from_server].port);
server.c:				server_list[primary_server].port);
server.c:					server_list[i].port,
server.c:						server_list[i].port,
server.c:						server_list[i].port,
server.c:		*port,
server.c:	int	port_num,
server.c:			parse_server_info(server, &port, &password, &nick);
server.c:			port_num = atoi(port);
server.c:			if (!port_num)
server.c:				port_num = -1;
server.c:			if ((port = next_arg(args, &args)) != NULL)
server.c:				port_num = atoi(port);
server.c:				if (!port_num)
server.c:					port_num = irc_port;
server.c:				port_num = -1;
server.c:					server, port_num,
server.c:			if (server_list[i].port != -1)
server.c:				port_num = server_list[i].port;
server.c:		if (((i = find_in_server_list(server, port_num)) != -1) && is_server_connected(i))
server.c:		if (connect_to_server(server, port_num, primary_server) != -1)
server.c:/* get_server_port: Returns the connection port for the given server index */
server.c:get_server_port(server_index)
server.c:	return (server_list[server_index].port);
server.c:connect_to_unix(port, path)
server.c:	int	port;
server.c:	sprintf(un.sun_path, "%-.100s/%-.6d", path, port);
status.c:/* The format statements to build each portion of the status line */
status.c: * sub-portions of the status line to a format statement specially designed
status.c: * for that sub-portions.  convert_sub_format looks for a single occurence of
term.c: * Function variables: each returns 1 if the function is not supported on the
translat.c: * and a digraph entry facility.  Support an international IRC!
vars.c:		say("Warning!  Your terminal says it does not support eight bit characters");
whois.c: * nicks are not currently signed on, it will just omit reporting it.
whois.c: * reported as separate replies even though one request gets made and
whois.c:		say("Server does not support USERHOST");
whois.c:				say("Server does not support ISON");
window.c: * only some of the changed portions are redrawn 
window.c: * windows.  By updating, it only draws from changed portions of the status
window.c: * the * current channel is not changed, but simply reported by the function
window.c:		port_num,
window.c:	char	*port,
window.c:		parse_server_info(arg, &port, &password, &nick);
window.c:		if (port)
window.c:			port_num = atoi(port);
window.c:			if (!port_num)
window.c:				port_num = -1;
window.c:			port_num = -1;
window.c:			if (port_num == -1) /* Could be "/serv +1:6664" -Sol */
window.c:			port_num = server_list[i].port;
window.c:		else if ((i = find_in_server_list(arg, port_num)) != -1)
window.c:			port_num = server_list[i].port;
window.c:		port_num = server_list[i].port;
window.c:		if (((i = find_in_server_list(arg, port_num)) != -1) && is_server_connected(i))
window.c:		if (!connect_to_server(arg, port_num, (new_server_flags & WIN_ALL) ? window->server : -1))
window.c:		if (((i = find_in_server_list(get_server_name(i), port_num)) != -1) && is_server_connected(i))
window.c:		if (!connect_to_server(get_server_name(i), server_list[i].port, (new_server_flags & WIN_ALL) ? window->server : -1))
wterm.c: * Function variables: each returns 1 if the function is not supported on the
