ObjFW  Check-in [fe4a1fb193]

Overview
Comment:OFHTTPServer: Fix missing #import.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: fe4a1fb193f35c0a483707a69b56dabcba62c7b1321ac35ce176102d34bc8a0b
User & Date: js on 2013-01-28 22:40:35
Other Links: manifest | tags
Context
2013-01-28
22:48
objfw-config: Add --static-libs. check-in: e7d0fb8ee1 user: js tags: trunk
22:40
OFHTTPServer: Fix missing #import. check-in: fe4a1fb193 user: js tags: trunk
21:12
JSON5: Update to new version of the spec. check-in: f59977a0aa user: js tags: trunk
Changes

Modified src/OFHTTPServer.m from [3a7faef063] to [8f1d483c7d].

32
33
34
35
36
37
38

39
40
41
42
43
44
45
#import "OFAlreadyConnectedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
#import "OFOutOfMemoryException.h"
#import "OFOutOfRangeException.h"
#import "OFWriteFailedException.h"


#import "macros.h"

#define BUFFER_SIZE 1024

/*
 * FIXME: Key normalization replaces headers like "DNT" with "Dnt".
 * FIXME: Errors are not reported to the user.







>







32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#import "OFAlreadyConnectedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
#import "OFOutOfMemoryException.h"
#import "OFOutOfRangeException.h"
#import "OFWriteFailedException.h"

#import "autorelease.h"
#import "macros.h"

#define BUFFER_SIZE 1024

/*
 * FIXME: Key normalization replaces headers like "DNT" with "Dnt".
 * FIXME: Errors are not reported to the user.