├── .gitignore ├── AppRTCClient └── Source │ ├── ActivityManager.cpp │ ├── ActivityManager.h │ ├── CatcherNetwork.cpp │ ├── CatcherNetwork.h │ ├── Conductor.cpp │ ├── Conductor.h │ ├── GAEChannelClient.cpp │ ├── GAEChannelClient.h │ ├── GUI │ ├── ConnectWindow.cpp │ ├── ConnectWindow.h │ ├── QtMainWindow.cpp │ ├── QtMainWindow.h │ └── ui_authenticationdialog.h │ ├── Interface │ ├── MainWindow.h │ ├── MainWindowObserver.h │ ├── MessageHandlerDeep.h │ └── PeerConnectionClientObserver.h │ ├── MediaConstraintsNative.cpp │ ├── MediaConstraintsNative.h │ ├── PeerConnection.cpp │ ├── PeerConnection.h │ ├── ProxyingMessageHandler.cpp │ ├── ProxyingMessageHandler.h │ ├── VideoRenderer.cpp │ ├── VideoRenderer.h │ ├── channel.html │ ├── main.cpp │ ├── postQuery.cpp │ └── postQuery.h ├── LICENSE ├── README.md ├── all.gyp └── appRTCdesk.gyp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/.gitignore -------------------------------------------------------------------------------- /AppRTCClient/Source/ActivityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/ActivityManager.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/ActivityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/ActivityManager.h -------------------------------------------------------------------------------- /AppRTCClient/Source/CatcherNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/CatcherNetwork.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/CatcherNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/CatcherNetwork.h -------------------------------------------------------------------------------- /AppRTCClient/Source/Conductor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/Conductor.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/Conductor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/Conductor.h -------------------------------------------------------------------------------- /AppRTCClient/Source/GAEChannelClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/GAEChannelClient.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/GAEChannelClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/GAEChannelClient.h -------------------------------------------------------------------------------- /AppRTCClient/Source/GUI/ConnectWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/GUI/ConnectWindow.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/GUI/ConnectWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/GUI/ConnectWindow.h -------------------------------------------------------------------------------- /AppRTCClient/Source/GUI/QtMainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/GUI/QtMainWindow.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/GUI/QtMainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/GUI/QtMainWindow.h -------------------------------------------------------------------------------- /AppRTCClient/Source/GUI/ui_authenticationdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/GUI/ui_authenticationdialog.h -------------------------------------------------------------------------------- /AppRTCClient/Source/Interface/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/Interface/MainWindow.h -------------------------------------------------------------------------------- /AppRTCClient/Source/Interface/MainWindowObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/Interface/MainWindowObserver.h -------------------------------------------------------------------------------- /AppRTCClient/Source/Interface/MessageHandlerDeep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/Interface/MessageHandlerDeep.h -------------------------------------------------------------------------------- /AppRTCClient/Source/Interface/PeerConnectionClientObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/Interface/PeerConnectionClientObserver.h -------------------------------------------------------------------------------- /AppRTCClient/Source/MediaConstraintsNative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/MediaConstraintsNative.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/MediaConstraintsNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/MediaConstraintsNative.h -------------------------------------------------------------------------------- /AppRTCClient/Source/PeerConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/PeerConnection.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/PeerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/PeerConnection.h -------------------------------------------------------------------------------- /AppRTCClient/Source/ProxyingMessageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/ProxyingMessageHandler.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/ProxyingMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/ProxyingMessageHandler.h -------------------------------------------------------------------------------- /AppRTCClient/Source/VideoRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/VideoRenderer.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/VideoRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/VideoRenderer.h -------------------------------------------------------------------------------- /AppRTCClient/Source/channel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/channel.html -------------------------------------------------------------------------------- /AppRTCClient/Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/main.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/postQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/postQuery.cpp -------------------------------------------------------------------------------- /AppRTCClient/Source/postQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/AppRTCClient/Source/postQuery.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/README.md -------------------------------------------------------------------------------- /all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/all.gyp -------------------------------------------------------------------------------- /appRTCdesk.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Temasys/appRTCDesk/HEAD/appRTCdesk.gyp --------------------------------------------------------------------------------