Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 952082d

Browse files
committed
bump version to v0.5.1 + clean up
1 parent 12eef6f commit 952082d

11 files changed

+36
-69
lines changed

SocketIO.h

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIO.h
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import <Foundation/Foundation.h>
@@ -73,7 +70,7 @@ typedef enum {
7370
BOOL _useSecure;
7471

7572
NSArray *_cookies;
76-
73+
7774
NSURLConnection *_handshake;
7875

7976
// heartbeat

SocketIO.m

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIO.m
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import "SocketIO.h"
@@ -78,7 +75,7 @@ @implementation SocketIO
7875

7976
@synthesize isConnected = _isConnected,
8077
isConnecting = _isConnecting,
81-
useSecure = _useSecure,
78+
useSecure = _useSecure,
8279
cookies = _cookies,
8380
delegate = _delegate,
8481
heartbeatTimeout = _heartbeatTimeout,
@@ -685,7 +682,7 @@ - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)er
685682
NSLog(@"ERROR: handshake failed ... %@", [error localizedDescription]);
686683

687684
int errorCode = [error code] == 403 ? SocketIOUnauthorized : SocketIOHandshakeFailed;
688-
685+
689686
_isConnected = NO;
690687
_isConnecting = NO;
691688

SocketIOJSONSerialization.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIOJSONSerialization.h
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import <Foundation/Foundation.h>

SocketIOJSONSerialization.m

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIOJSONSerialization.m
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import "SocketIOJSONSerialization.h"

SocketIOPacket.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIOPacket.h
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import <Foundation/Foundation.h>

SocketIOPacket.m

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIOPacket.h
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import "SocketIOPacket.h"

SocketIOTransport.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIOTransport.h
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import <Foundation/Foundation.h>

SocketIOTransportWebsocket.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIOTransportWebsocket.h
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import <Foundation/Foundation.h>

SocketIOTransportWebsocket.m

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIOTransportWebsocket.m
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import "SocketIOTransportWebsocket.h"

SocketIOTransportXHR.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
//
22
// SocketIOTransportXHR.h
3-
// v0.5 ARC
3+
// v0.5.1
44
//
55
// based on
66
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
77
// by Fred Potter <[email protected]>
88
//
99
// using
1010
// https://github.com/square/SocketRocket
11-
// https://github.com/stig/json-framework/
1211
//
1312
// reusing some parts of
1413
// /socket.io/socket.io.js
1514
//
1615
// Created by Philipp Kyeck http://beta-interactive.de
1716
//
18-
// Updated by
19-
// samlown https://github.com/samlown
20-
// kayleg https://github.com/kayleg
21-
// taiyangc https://github.com/taiyangc
17+
// With help from
18+
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
2219
//
2320

2421
#import <Foundation/Foundation.h>

0 commit comments

Comments
 (0)