├── .gitignore ├── README.md ├── ofxNetworkSyncAutoNetworkExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── sound │ │ └── 1085.mp3 ├── config.make ├── ofxNetworkSyncAutoNetworkExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxNetworkSyncAutoNetworkExample Debug.xcscheme │ │ └── ofxNetworkSyncAutoNetworkExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ └── ofSoundPlayerDelayed.h ├── ofxNetworkSyncClientExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── data │ │ ├── .gitkeep │ │ └── sound │ │ │ └── 1085.mp3 │ └── ofxNetworkSyncClientExampleDebug.app │ │ └── Contents │ │ ├── Info.plist │ │ └── PkgInfo ├── config.make ├── ofxNetworkSyncClientExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── ofxNetworkSyncClientExample Debug.xcscheme │ │ │ └── ofxNetworkSyncClientExample Release.xcscheme │ └── xcuserdata │ │ └── anagma.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ └── ofSoundPlayerDelayed.h ├── ofxNetworkSyncServerExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── sound │ │ └── 1085.mp3 ├── config.make ├── ofxNetworkSyncServerExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── ofxNetworkSyncServerExample Debug.xcscheme │ │ │ └── ofxNetworkSyncServerExample Release.xcscheme │ └── xcuserdata │ │ └── anagma.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ └── ofSoundPlayerDelayed.h ├── ofxNetworkSyncServerFinderExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── sound │ │ └── 1085.mp3 ├── config.make ├── ofxNetworkSyncServerFinderExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxNetworkSyncServerFinderExample Debug.xcscheme │ │ └── ofxNetworkSyncServerFinderExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ └── ofSoundPlayerDelayed.h └── src ├── ofxNetworkSync.h ├── ofxNetworkSyncClient.cpp ├── ofxNetworkSyncClient.h ├── ofxNetworkSyncClientState.cpp ├── ofxNetworkSyncClientState.h ├── ofxNetworkSyncConstants.h ├── ofxNetworkSyncServer.cpp ├── ofxNetworkSyncServer.h ├── ofxNetworkSyncServerFinder.h ├── ofxNetworkSyncUdp.cpp └── ofxNetworkSyncUdp.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/README.md -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/Makefile -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/Project.xcconfig -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/addons.make -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/bin/data/sound/1085.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/bin/data/sound/1085.mp3 -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/config.make -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/ofxNetworkSyncAutoNetworkExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/ofxNetworkSyncAutoNetworkExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/ofxNetworkSyncAutoNetworkExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncAutoNetworkExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/ofxNetworkSyncAutoNetworkExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncAutoNetworkExample Debug.xcscheme -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/ofxNetworkSyncAutoNetworkExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncAutoNetworkExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/ofxNetworkSyncAutoNetworkExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncAutoNetworkExample Release.xcscheme -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/src/main.cpp -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/src/ofApp.cpp -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/src/ofApp.h -------------------------------------------------------------------------------- /ofxNetworkSyncAutoNetworkExample/src/ofSoundPlayerDelayed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncAutoNetworkExample/src/ofSoundPlayerDelayed.h -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/Makefile -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/Project.xcconfig -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/addons.make -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/bin/data/sound/1085.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/bin/data/sound/1085.mp3 -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/bin/ofxNetworkSyncClientExampleDebug.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/bin/ofxNetworkSyncClientExampleDebug.app/Contents/Info.plist -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/bin/ofxNetworkSyncClientExampleDebug.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/config.make -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncClientExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncClientExample Debug.xcscheme -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncClientExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncClientExample Release.xcscheme -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/xcuserdata/anagma.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/ofxNetworkSyncClientExample.xcodeproj/xcuserdata/anagma.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/src/main.cpp -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/src/ofApp.cpp -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/src/ofApp.h -------------------------------------------------------------------------------- /ofxNetworkSyncClientExample/src/ofSoundPlayerDelayed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncClientExample/src/ofSoundPlayerDelayed.h -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/Makefile -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/Project.xcconfig -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/addons.make -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/bin/data/sound/1085.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/bin/data/sound/1085.mp3 -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/config.make -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncServerExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncServerExample Debug.xcscheme -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncServerExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncServerExample Release.xcscheme -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/xcuserdata/anagma.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/ofxNetworkSyncServerExample.xcodeproj/xcuserdata/anagma.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/src/main.cpp -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/src/ofApp.cpp -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/src/ofApp.h -------------------------------------------------------------------------------- /ofxNetworkSyncServerExample/src/ofSoundPlayerDelayed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerExample/src/ofSoundPlayerDelayed.h -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/Makefile -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/Project.xcconfig -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/addons.make -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/bin/data/sound/1085.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/bin/data/sound/1085.mp3 -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/config.make -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/ofxNetworkSyncServerFinderExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/ofxNetworkSyncServerFinderExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/ofxNetworkSyncServerFinderExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncServerFinderExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/ofxNetworkSyncServerFinderExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncServerFinderExample Debug.xcscheme -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/ofxNetworkSyncServerFinderExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncServerFinderExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/ofxNetworkSyncServerFinderExample.xcodeproj/xcshareddata/xcschemes/ofxNetworkSyncServerFinderExample Release.xcscheme -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/src/main.cpp -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/src/ofApp.cpp -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/src/ofApp.h -------------------------------------------------------------------------------- /ofxNetworkSyncServerFinderExample/src/ofSoundPlayerDelayed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/ofxNetworkSyncServerFinderExample/src/ofSoundPlayerDelayed.h -------------------------------------------------------------------------------- /src/ofxNetworkSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSync.h -------------------------------------------------------------------------------- /src/ofxNetworkSyncClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncClient.cpp -------------------------------------------------------------------------------- /src/ofxNetworkSyncClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncClient.h -------------------------------------------------------------------------------- /src/ofxNetworkSyncClientState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncClientState.cpp -------------------------------------------------------------------------------- /src/ofxNetworkSyncClientState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncClientState.h -------------------------------------------------------------------------------- /src/ofxNetworkSyncConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncConstants.h -------------------------------------------------------------------------------- /src/ofxNetworkSyncServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncServer.cpp -------------------------------------------------------------------------------- /src/ofxNetworkSyncServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncServer.h -------------------------------------------------------------------------------- /src/ofxNetworkSyncServerFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncServerFinder.h -------------------------------------------------------------------------------- /src/ofxNetworkSyncUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncUdp.cpp -------------------------------------------------------------------------------- /src/ofxNetworkSyncUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anagma/ofxNetworkSync/HEAD/src/ofxNetworkSyncUdp.h --------------------------------------------------------------------------------