Skip to content

ujell/TLKSimpleWebRTC

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TLKSimpleWebRTC for the current Signalmaster

A version of TLKSimpleWebRTC which uses the official Socket.IO client for communicating with Signalmaster.

What is this all about?

At the time this document written, Signalmaster uses Socket.IO 1.3.7, while AZSocketIO, which is basis of socket communication in TLKSimpleWebRTC, uses 0.9. Since handshaking protocol between Socket.IO 0.9 and 1.0+ is different, TLKSimpleWebRTC is not working with the current Signalmaster anymore. Meanwhile, Socket.IO released their own iOS/OSX version, so this fork aims to use this implementation and create a compatible version with the latest Signalmaster.

Usage

Usage is mostly the same with the original version, you can check original project for further instructions. Differences are mentioned in the related section.

Build Environment

Creating the build environment is a bit different than the original version.

First download / clone and add files under the Classes folder to your project. Repeat this for the TLKWebRTC.

Afterwards add following lines to your Podfile;

use_frameworks!

pod 'libjingle_peerconnection'
pod 'Socket.IO-Client-Swift'

Differences from the TLKSimpleWebRTC

  • There is a new initializer for managing connection configuration. It can be used like this;

      NSDictionary * config = @{@"selfSigned": @YES, @"sessionDelegate" : self};
      [self.signaling connectToServer:@"https://192.168.0.102" port: 3000 config: config success:^{
      } failure:^(NSString* error) {
          NSLog(@"connect failure");
      }];
    

For the full list of possible options please refer to Socket.IO client documentation.

  • Failures are reported with NSString instead of NSError.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 100.0%