Skip to content

Commit

Permalink
Restructured
Browse files Browse the repository at this point in the history
  • Loading branch information
mogui committed Nov 6, 2014
1 parent 60b96b2 commit e9aedae
Show file tree
Hide file tree
Showing 113 changed files with 566 additions and 710 deletions.
20 changes: 10 additions & 10 deletions .gitmodules
@@ -1,15 +1,15 @@
[submodule "lib/SocketRocket"]
path = lib/SocketRocket
[submodule "External/SocketRocket"]
path = External/SocketRocket
url = git://github.com/square/SocketRocket.git
[submodule "lib/msgpack-objectivec"]
path = lib/msgpack-objectivec
[submodule "External/msgpack-objectivec"]
path = External/msgpack-objectivec
url = git://github.com/msgpack/msgpack-objectivec.git
[submodule "lib/CocoaAsyncSocket"]
path = lib/CocoaAsyncSocket
[submodule "External/CocoaAsyncSocket"]
path = External/CocoaAsyncSocket
url = git://github.com/robbiehanson/CocoaAsyncSocket.git
[submodule "lib/xctest-additions"]
path = lib/xctest-additions
[submodule "External/xctest-additions"]
path = External/xctest-additions
url = git://github.com/iheartradio/xctest-additions.git
[submodule "lib/MPMessagePack"]
path = lib/MPMessagePack
[submodule "External/MPMessagePack"]
path = External/MPMessagePack
url = git://github.com/gabriel/MPMessagePack.git
1,252 changes: 554 additions & 698 deletions MDWamp.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions MDWamp/MDWamp.m → MDWamp/src/MDWamp.m
Expand Up @@ -552,7 +552,7 @@ - (void) receivedMessage:(id<MDWampMessage>)message
// WAMP CRA
// If I've no config object something is wrong :P
// Default WampClient hasn't any auth
if ([challenge.authMethod isEqualTo:kMDWampAuthMethodCRA] && self.config && self.config.sharedSecret) {
if ([challenge.authMethod isEqualToString:kMDWampAuthMethodCRA] && self.config && self.config.sharedSecret) {

// deferred challenge signing
if (self.config && self.config.deferredWampCRASigningBlock) {
Expand Down Expand Up @@ -592,7 +592,7 @@ - (void) receivedMessage:(id<MDWampMessage>)message
}

// Ticket Based Auth
} else if ([challenge.authMethod isEqualTo:kMDWampAuthMethodTicket] && self.config && self.config.ticket) {
} else if ([challenge.authMethod isEqualToString:kMDWampAuthMethodTicket] && self.config && self.config.ticket) {
MDWampAuthenticate *auth = [[MDWampAuthenticate alloc] initWithPayload:@[self.config.ticket, @{}]];
[self sendMessage:auth];
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e9aedae

Please sign in to comment.