[mini] Add new JIT flag JIT_FLAG_DISCARD_RESULTS to reduce the noise when profiling...
[mono.git] / mono / io-layer / socket-private.h
1 /*
2  * socket-private.h:  Private definitions for socket handles
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  */
9
10 #ifndef _WAPI_SOCKET_PRIVATE_H_
11 #define _WAPI_SOCKET_PRIVATE_H_
12
13 #include <config.h>
14 #include <glib.h>
15
16 #include "wapi-private.h"
17
18 struct _WapiHandle_socket
19 {
20         int domain;
21         int type;
22         int protocol;
23         int saved_error;
24         int still_readable;
25 };
26
27 void
28 _wapi_socket_init (void);
29
30 #endif /* _WAPI_SOCKET_PRIVATE_H_ */