#ifndef _MESSAGE_H
#define _MESSAGE_H
/**
* message structure that get sent from the client
*/
typedef struct msg {
long len;
char *str;
} msg_t;
#endif