clifd = socket(PF_INET, SOCK_STREAM, 0);
srvaddr.sin_family = AF_INET;
srvaddr.sin_port = htons(SERVER_PORT);
inet_aton(SERVER_IP, &srvaddr.sin_addr);
connect(clifd, (struct sockaddr*)&srvaddr, sizeof(struct sockaddr_in));
msglen = snprintf(msgbuf, sizeof(msgbuf),
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
               "Welcome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
send(clifd, msgbuf, msglen, 0); 

Welcome to the CISC 7332 Local Area Networks Section T6. This is the Web site for the class offered by the Department of Computer and Information Science, CUNY Brooklyn College in Fall 2019.

The Web site is the primary dissemination channel for the information about the class. At the top, please locate links like “syllabus”, “schedule”, “resources”, and “reviews”. Please explore these.

For lecture notes and assignments, please find them under schedule. Check back often for updates.