C sockets, chat server and client, problem echoing back.
- by wretrOvian
Hi
This is my chat server :
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <string.h>
#define LISTEN_Q 20
#define MSG_SIZE 1024
struct userlist {
int sockfd;
struct sockaddr addr;
struct userlist *next;…