bug fixes for udp broadcast
[IRC.git] / Robust / src / Runtime / DSTM / interface / addUdpEnhance.h
1 #ifndef _UDP_H
2 #define _UDP_H
3
4 #include "dstm.h"
5
6
7 /*******************************
8  * Udp Message structures
9  ******************************/
10 #define INVALIDATE_OBJS 101
11
12 /*************************
13  * Global constants
14  ************************/
15 #define MAX_SIZE  2000
16
17 /********************************
18  *  Function Prototypes
19  *******************************/
20 int createUdpSocket();
21 int udpInit();
22 void *udpListenBroadcast(void *);
23 int invalidateObj(thread_data_array_t *);
24 int invalidateFromPrefetchCache(char *); 
25 int sendUdpMsg(thread_data_array_t *, struct sockaddr_in *, int);
26 #endif