ObjFW  Diff

Differences From Artifact [28d68003aa]:

To Artifact [77f81be914]:


122
123
124
125
126
127
128
129

130
131
132
133
134
135
136
137
138
139
140
141
122
123
124
125
126
127
128

129
130
131
132
133
134
135
136
137
138
139
140
141







-
+












 * @brief Creates a new HTTP server.
 *
 * @return A new HTTP server
 */
+ (instancetype)server;

/*!
 * @brief Starts the HTTP server in the current thread's runloop.
 * @brief Starts the HTTP server in the current thread's run loop.
 */
- (void)start;

/*!
 * @brief Stops the HTTP server, meaning it will not accept any new incoming
 *	  connections, but still handle existing connections until they are
 *	  finished or timed out.
 */
- (void)stop;
@end

OF_ASSUME_NONNULL_END