Added basic server functionality from ex 2 lesson 11
This commit is contained in:
12
lib/utils/message.h
Normal file
12
lib/utils/message.h
Normal file
@ -0,0 +1,12 @@
|
||||
#ifndef _MESSAGE_H
|
||||
#define _MESSAGE_H
|
||||
|
||||
/**
|
||||
* tipo del messaggio
|
||||
*/
|
||||
typedef struct msg {
|
||||
int len;
|
||||
char *str;
|
||||
} msg_t;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user