ObjFW  Check-in [49b741b30e]

Overview
Comment:OFTCPSocket.h: Explicitly import objfw-defs.h.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 49b741b30e16af5c7c9b93e9953a623ddba00262b070bc51191306c5417bb86c
User & Date: js on 2013-05-26 17:24:51
Other Links: manifest | tags
Context
2013-05-30
08:56
OFStreamObserver: Add missing include on Win32. check-in: 3798cbd7ce user: js tags: trunk
2013-05-26
17:24
OFTCPSocket.h: Explicitly import objfw-defs.h. check-in: 49b741b30e user: js tags: trunk
2013-05-25
11:40
Switch back to backtrace(). check-in: f2a8bdf254 user: js tags: trunk
Changes

Modified src/OFTCPSocket.h from [720d96e946] to [4ec65efa11].

16
17
18
19
20
21
22


23
24
25
26
27
28
29

#ifndef __STDC_LIMIT_MACROS
# define __STDC_LIMIT_MACROS
#endif
#ifndef __STDC_CONSTANT_MACROS
# define __STDC_CONSTANT_MACROS
#endif



#ifdef OF_HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

#import "OFStreamSocket.h"








>
>







16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

#ifndef __STDC_LIMIT_MACROS
# define __STDC_LIMIT_MACROS
#endif
#ifndef __STDC_CONSTANT_MACROS
# define __STDC_CONSTANT_MACROS
#endif

#import "objfw-defs.h"

#ifdef OF_HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

#import "OFStreamSocket.h"