Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 779 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 779 Bytes

SJCSimpleChat

This repo contains three things:

  1. A set of classes based on Apple's WiTap example code which advertise and find each other via bonjour and then create a socket connection over which data can be transfered. (client+server+connection)
  2. A set of classes for implementing a simple chat client. (chat)
  3. An example chat server daemon. (simplechatd)

This repo also contains a copy of Apple's TCPServer class. NOTE: While the rest of the code is written using ARC, this class isn't, and so should be compiled using -fno-objc-arc.

The chat client classes (and thus the daemon) require FMDB, which is used for message storage.