├── .gitignore ├── Chatchat.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Chatchat ├── .DS_Store ├── ARDSDPUtils.h ├── ARDSDPUtils.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CallViewController.h ├── CallViewController.m ├── ChatSession.h ├── ChatSession.m ├── ChatSessionManager.h ├── ChatSessionManager.m ├── ChatViewController.h ├── ChatViewController.m ├── CommonDefines.h ├── ContactsTableViewController.h ├── ContactsTableViewController.m ├── IncomingCallViewController.h ├── IncomingCallViewController.m ├── Info.plist ├── Message.h ├── Message.m ├── OutgoingViewController.h ├── OutgoingViewController.m ├── RTCICECandidate+JSON.h ├── RTCICECandidate+JSON.m ├── RTCSessionDescription+JSON.h ├── RTCSessionDescription+JSON.m ├── User.h ├── User.m ├── UserManager.h ├── UserManager.m ├── VideoCallViewController.h ├── VideoCallViewController.m ├── VoiceCallViewController.h ├── VoiceCallViewController.m ├── constants.h └── main.m ├── LICENSE ├── Podfile ├── README.md └── Server ├── index.html ├── package.json ├── public ├── css │ └── main.css └── main.js └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/.gitignore -------------------------------------------------------------------------------- /Chatchat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chatchat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chatchat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/.DS_Store -------------------------------------------------------------------------------- /Chatchat/ARDSDPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ARDSDPUtils.h -------------------------------------------------------------------------------- /Chatchat/ARDSDPUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ARDSDPUtils.m -------------------------------------------------------------------------------- /Chatchat/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/AppDelegate.h -------------------------------------------------------------------------------- /Chatchat/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/AppDelegate.m -------------------------------------------------------------------------------- /Chatchat/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chatchat/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chatchat/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chatchat/CallViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/CallViewController.h -------------------------------------------------------------------------------- /Chatchat/CallViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/CallViewController.m -------------------------------------------------------------------------------- /Chatchat/ChatSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ChatSession.h -------------------------------------------------------------------------------- /Chatchat/ChatSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ChatSession.m -------------------------------------------------------------------------------- /Chatchat/ChatSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ChatSessionManager.h -------------------------------------------------------------------------------- /Chatchat/ChatSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ChatSessionManager.m -------------------------------------------------------------------------------- /Chatchat/ChatViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ChatViewController.h -------------------------------------------------------------------------------- /Chatchat/ChatViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ChatViewController.m -------------------------------------------------------------------------------- /Chatchat/CommonDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/CommonDefines.h -------------------------------------------------------------------------------- /Chatchat/ContactsTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ContactsTableViewController.h -------------------------------------------------------------------------------- /Chatchat/ContactsTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/ContactsTableViewController.m -------------------------------------------------------------------------------- /Chatchat/IncomingCallViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/IncomingCallViewController.h -------------------------------------------------------------------------------- /Chatchat/IncomingCallViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/IncomingCallViewController.m -------------------------------------------------------------------------------- /Chatchat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/Info.plist -------------------------------------------------------------------------------- /Chatchat/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/Message.h -------------------------------------------------------------------------------- /Chatchat/Message.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/Message.m -------------------------------------------------------------------------------- /Chatchat/OutgoingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/OutgoingViewController.h -------------------------------------------------------------------------------- /Chatchat/OutgoingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/OutgoingViewController.m -------------------------------------------------------------------------------- /Chatchat/RTCICECandidate+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/RTCICECandidate+JSON.h -------------------------------------------------------------------------------- /Chatchat/RTCICECandidate+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/RTCICECandidate+JSON.m -------------------------------------------------------------------------------- /Chatchat/RTCSessionDescription+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/RTCSessionDescription+JSON.h -------------------------------------------------------------------------------- /Chatchat/RTCSessionDescription+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/RTCSessionDescription+JSON.m -------------------------------------------------------------------------------- /Chatchat/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/User.h -------------------------------------------------------------------------------- /Chatchat/User.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/User.m -------------------------------------------------------------------------------- /Chatchat/UserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/UserManager.h -------------------------------------------------------------------------------- /Chatchat/UserManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/UserManager.m -------------------------------------------------------------------------------- /Chatchat/VideoCallViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/VideoCallViewController.h -------------------------------------------------------------------------------- /Chatchat/VideoCallViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/VideoCallViewController.m -------------------------------------------------------------------------------- /Chatchat/VoiceCallViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/VoiceCallViewController.h -------------------------------------------------------------------------------- /Chatchat/VoiceCallViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/VoiceCallViewController.m -------------------------------------------------------------------------------- /Chatchat/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/constants.h -------------------------------------------------------------------------------- /Chatchat/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Chatchat/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/README.md -------------------------------------------------------------------------------- /Server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Server/index.html -------------------------------------------------------------------------------- /Server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Server/package.json -------------------------------------------------------------------------------- /Server/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Server/public/css/main.css -------------------------------------------------------------------------------- /Server/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Server/public/main.js -------------------------------------------------------------------------------- /Server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistKing/chatchat/HEAD/Server/server.js --------------------------------------------------------------------------------