/* Initialize the socket info */
#include <conndefs.h>


init_conns()
{
    int i;

    for (i = 0; i < MAXCHANNELS; i++) {
	conn_list[i].fd = 0;
	conn_list[i].inuse = 0;
    }
}
