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