aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMHTTPServer.m
diff options
context:
space:
mode:
Diffstat (limited to 'Foundation/GTMHTTPServer.m')
-rw-r--r--Foundation/GTMHTTPServer.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/Foundation/GTMHTTPServer.m b/Foundation/GTMHTTPServer.m
index 4ecc9f7..4a7a859 100644
--- a/Foundation/GTMHTTPServer.m
+++ b/Foundation/GTMHTTPServer.m
@@ -31,7 +31,7 @@
@interface GTMHTTPServer (PrivateMethods)
- (void)acceptedConnectionNotification:(NSNotification *)notification;
-- (NSMutableDictionary *)newConnectionWithFileHandle:(NSFileHandle *)fileHandle;
+- (NSMutableDictionary *)connectionWithFileHandle:(NSFileHandle *)fileHandle;
- (void)dataAvailableNotification:(NSNotification *)notification;
- (NSMutableDictionary *)lookupConnection:(NSFileHandle *)fileHandle;
- (void)closeConnection:(NSMutableDictionary *)connDict;
@@ -258,11 +258,11 @@ startFailed:
// on it.
NSMutableDictionary *connDict =
- [self newConnectionWithFileHandle:newConnection];
+ [self connectionWithFileHandle:newConnection];
[connections_ addObject:connDict];
}
-- (NSMutableDictionary *)newConnectionWithFileHandle:(NSFileHandle *)fileHandle {
+- (NSMutableDictionary *)connectionWithFileHandle:(NSFileHandle *)fileHandle {
NSMutableDictionary *result = [NSMutableDictionary dictionary];
[result setObject:fileHandle forKey:kFileHandle];