├── .gitignore ├── AndroidClientWorkspace ├── .gitignore ├── OBSRemote │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.ltk.core.refactoring.prefs │ ├── AndroidManifest.xml │ ├── assets │ │ └── fonts │ │ │ └── neometricmedium.ttf │ ├── ic_launcher-web.png │ ├── libs │ │ ├── autobahn.jar │ │ ├── gson-2.2.4-javadoc.jar │ │ ├── gson-2.2.4-sources.jar │ │ ├── gson-2.2.4.jar │ │ ├── jackson-core-asl-1.9.7.jar │ │ └── jackson-mapper-asl-1.9.7.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── desktop_off.png │ │ │ ├── desktop_off_pressed.png │ │ │ ├── desktop_on.png │ │ │ ├── desktop_on_pressed.png │ │ │ ├── ic_launcher.png │ │ │ ├── mic_off.png │ │ │ ├── mic_off_pressed.png │ │ │ ├── mic_on.png │ │ │ └── mic_on_pressed.png │ │ ├── drawable-ldpi │ │ │ ├── desktop_off.png │ │ │ ├── desktop_off_pressed.png │ │ │ ├── desktop_on.png │ │ │ ├── desktop_on_pressed.png │ │ │ ├── ic_launcher.png │ │ │ ├── mic_off.png │ │ │ ├── mic_off_pressed.png │ │ │ ├── mic_on.png │ │ │ └── mic_on_pressed.png │ │ ├── drawable-mdpi │ │ │ ├── desktop_off.png │ │ │ ├── desktop_off_pressed.png │ │ │ ├── desktop_on.png │ │ │ ├── desktop_on_pressed.png │ │ │ ├── ic_launcher.png │ │ │ ├── mic_off.png │ │ │ ├── mic_off_pressed.png │ │ │ ├── mic_on.png │ │ │ └── mic_on_pressed.png │ │ ├── drawable-xhdpi │ │ │ ├── desktop_off.png │ │ │ ├── desktop_off_pressed.png │ │ │ ├── desktop_on.png │ │ │ ├── desktop_on_pressed.png │ │ │ ├── ic_launcher.png │ │ │ ├── mic_off.png │ │ │ ├── mic_off_pressed.png │ │ │ ├── mic_on.png │ │ │ └── mic_on_pressed.png │ │ ├── drawable-xxhdpi │ │ │ ├── desktop_off.png │ │ │ ├── desktop_off_pressed.png │ │ │ ├── desktop_on.png │ │ │ ├── desktop_on_pressed.png │ │ │ ├── ic_launcher.png │ │ │ ├── mic_off.png │ │ │ ├── mic_off_pressed.png │ │ │ ├── mic_on.png │ │ │ └── mic_on_pressed.png │ │ ├── drawable │ │ │ ├── button_default.xml │ │ │ ├── button_pressed.xml │ │ │ ├── button_streaming_default.xml │ │ │ ├── button_streaming_pressed.xml │ │ │ ├── button_streaming_selector.xml │ │ │ ├── buttonselector.xml │ │ │ ├── desktop_offs.xml │ │ │ ├── desktop_ons.xml │ │ │ ├── microphone_off.xml │ │ │ ├── microphone_on.xml │ │ │ ├── notification_icon.png │ │ │ ├── remotelogo.png │ │ │ ├── sceneselected.xml │ │ │ ├── sceneunselected.xml │ │ │ ├── sourceoff.xml │ │ │ ├── sourceon.xml │ │ │ └── volume_clip.xml │ │ ├── layout │ │ │ ├── activity_remote.xml │ │ │ ├── audio_dialog.xml │ │ │ ├── password_dialog.xml │ │ │ ├── remote_notification.xml │ │ │ ├── scene_item.xml │ │ │ ├── source_item.xml │ │ │ ├── splash.xml │ │ │ └── volume_control.xml │ │ ├── menu │ │ │ └── remote.xml │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ ├── values-sw720dp-land │ │ │ └── dimens.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v9 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── bilhamil │ │ └── obsremote │ │ ├── OBSRemoteApplication.java │ │ ├── RemoteUpdateListener.java │ │ ├── WebSocketService.java │ │ ├── activities │ │ ├── AuthDialogFragment.java │ │ ├── Remote.java │ │ ├── Splash.java │ │ └── VolumeDialogFragment.java │ │ └── messages │ │ ├── IncomingMessage.java │ │ ├── IncomingMessageAdapter.java │ │ ├── ResponseHandler.java │ │ ├── requests │ │ ├── Authenticate.java │ │ ├── GetAuthRequired.java │ │ ├── GetSceneList.java │ │ ├── GetStreamingStatus.java │ │ ├── GetVersion.java │ │ ├── GetVolumes.java │ │ ├── Request.java │ │ ├── SetCurrentScene.java │ │ ├── SetSourceOrder.java │ │ ├── SetSourceRender.java │ │ ├── SetVolume.java │ │ ├── StartStopStreaming.java │ │ └── ToggleMute.java │ │ ├── responses │ │ ├── AuthRequiredResp.java │ │ ├── GetSceneListResponse.java │ │ ├── Response.java │ │ ├── StreamStatusResponse.java │ │ ├── VersionResponse.java │ │ └── VolumesResponse.java │ │ ├── updates │ │ ├── RepopulateSources.java │ │ ├── ScenesChanged.java │ │ ├── SourceChanged.java │ │ ├── SourceOrderChanged.java │ │ ├── StreamStarting.java │ │ ├── StreamStatus.java │ │ ├── StreamStopping.java │ │ ├── SwitchScenes.java │ │ ├── Update.java │ │ └── VolumeChanged.java │ │ └── util │ │ ├── Scene.java │ │ └── Source.java └── drag-sort-listview │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── demo │ ├── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── app-description.txt │ ├── build.xml │ ├── libs │ │ └── android-support-v4.jar │ ├── pom.xml │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── delete_x.png │ │ │ ├── drag.9.png │ │ │ └── dslv_launcher.png │ │ ├── drawable-ldpi │ │ │ └── dslv_launcher.png │ │ ├── drawable-mdpi │ │ │ ├── drag.9.png │ │ │ └── dslv_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── dslv_launcher.png │ │ ├── drawable │ │ │ ├── bg_handle.xml │ │ │ ├── bg_handle_section1.xml │ │ │ ├── bg_handle_section1_selector.xml │ │ │ ├── bg_handle_section2.xml │ │ │ ├── bg_handle_section2_selector.xml │ │ │ ├── drag.9.png │ │ │ └── section_div.xml │ │ ├── layout │ │ │ ├── bg_handle_main.xml │ │ │ ├── checkable_main.xml │ │ │ ├── cursor_main.xml │ │ │ ├── dslv_fragment_main.xml │ │ │ ├── header_footer.xml │ │ │ ├── hetero_main.xml │ │ │ ├── jazz_artist_list_item.xml │ │ │ ├── launcher.xml │ │ │ ├── launcher_item.xml │ │ │ ├── list_item_bg_handle.xml │ │ │ ├── list_item_checkable.xml │ │ │ ├── list_item_click_remove.xml │ │ │ ├── list_item_handle_left.xml │ │ │ ├── list_item_handle_right.xml │ │ │ ├── list_item_no_handle.xml │ │ │ ├── list_item_radio.xml │ │ │ ├── section_div.xml │ │ │ ├── sections_main.xml │ │ │ ├── test_bed_main.xml │ │ │ └── warp_main.xml │ │ ├── menu │ │ │ └── mode_menu.xml │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── mobeta │ │ └── android │ │ └── demodslv │ │ ├── ArbItemSizeDSLV.java │ │ ├── BGHandle.java │ │ ├── CheckableLinearLayout.java │ │ ├── CursorDSLV.java │ │ ├── DSLVFragment.java │ │ ├── DSLVFragmentBGHandle.java │ │ ├── DSLVFragmentClicks.java │ │ ├── DragInitModeDialog.java │ │ ├── EnablesDialog.java │ │ ├── Launcher.java │ │ ├── MultipleChoiceListView.java │ │ ├── RemoveModeDialog.java │ │ ├── Sections.java │ │ ├── SingleChoiceListView.java │ │ ├── TestBedDSLV.java │ │ └── WarpDSLV.java │ ├── library │ ├── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build.xml │ ├── libs │ │ └── android-support-v4.jar │ ├── pom.xml │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ └── values │ │ │ └── dslv_attrs.xml │ └── src │ │ └── com │ │ └── mobeta │ │ └── android │ │ └── dslv │ │ ├── DragSortController.java │ │ ├── DragSortCursorAdapter.java │ │ ├── DragSortItemView.java │ │ ├── DragSortItemViewCheckable.java │ │ ├── DragSortListView.java │ │ ├── ResourceDragSortCursorAdapter.java │ │ ├── SimpleDragSortCursorAdapter.java │ │ └── SimpleFloatViewManager.java │ ├── pom.xml │ └── tools │ ├── demo-sign-align.sh │ ├── doc-dslv.sh │ ├── dslv.py │ └── pkg-dslv.sh ├── ImageSources ├── CheckSprite.psd ├── DoubleArrow.ai ├── EyeSprite.psd ├── Microphone.ai ├── Microphone.psd ├── OBSRemoteLogo.ai ├── RemoteLogo.psd ├── RemoteLogo512.png ├── Speaker.ai ├── Speaker.psd └── eye.ai ├── OBSRemote.sln ├── README.md ├── WebClient ├── .gitignore ├── .project ├── V1_01 │ ├── favicon.ico │ ├── fonts │ │ ├── neometricmedium.eot │ │ └── neometricmedium.ttf │ ├── imgs │ │ ├── .gitignore │ │ ├── OBSLogo54.png │ │ ├── chatsprite.png │ │ ├── checkboxsprite.png │ │ ├── connectionsprite.png │ │ ├── desktopbuttonsprite.png │ │ ├── doublearrowsmall.png │ │ ├── eyesprite.png │ │ ├── favicon.png │ │ ├── gearsprite.png │ │ ├── micbuttonsprite.png │ │ └── volumebar.png │ ├── index.html │ ├── js │ │ ├── browserDetect.js │ │ ├── connectionmodal.js │ │ ├── jquery-1.9.0.js │ │ ├── jquery-ui-1.10.0.custom.js │ │ ├── jquery-ui-1.10.0.custom.min.js │ │ ├── main.js │ │ ├── resizeDiv.js │ │ ├── scenelist.js │ │ ├── sourcelist.js │ │ ├── streamconfig.js │ │ ├── version.js │ │ ├── volumecontrol.js │ │ └── websocket.js │ └── styles │ │ ├── button.css │ │ ├── connectionmodal.css │ │ ├── custom-theme │ │ ├── images │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_BBBBBB_40x100.png │ │ │ ├── ui-bg_flat_65_777777_40x100.png │ │ │ ├── ui-bg_flat_75_444444_40x100.png │ │ │ ├── ui-bg_flat_75_555555_40x100.png │ │ │ ├── ui-bg_flat_75_777777_40x100.png │ │ │ ├── ui-bg_flat_95_CCCCCC_40x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_333333_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_CC6600_256x240.png │ │ │ └── ui-icons_FF9900_256x240.png │ │ ├── jquery-ui-1.10.0.custom.css │ │ └── jquery-ui-1.10.0.custom.min.css │ │ ├── fonts.css │ │ ├── index.css │ │ ├── scenelist.css │ │ ├── sourcelist.css │ │ ├── streamconfig.css │ │ └── volumebar.css ├── favicon.ico ├── fonts │ ├── neometricmedium.eot │ └── neometricmedium.ttf ├── imgs │ ├── .gitignore │ ├── OBSLogo54.png │ ├── chatsprite.png │ ├── checkboxsprite.png │ ├── connectionsprite.png │ ├── desktopbuttonsprite.png │ ├── doublearrowsmall.png │ ├── eyesprite.png │ ├── favicon.png │ ├── gearsprite.png │ ├── live_viewers.png │ ├── micbuttonsprite.png │ └── volumebar.png ├── index.html ├── js │ ├── browserDetect.js │ ├── connectionmodal.js │ ├── cryptojs │ │ ├── enc-base64-min.js │ │ └── sha256.js │ ├── jquery-1.9.0.js │ ├── jquery-ui-1.10.0.custom.js │ ├── jquery-ui-1.10.0.custom.min.js │ ├── main.js │ ├── resizeDiv.js │ ├── scenelist.js │ ├── sourcelist.js │ ├── streamconfig.js │ ├── twitch-api.js │ ├── twitch.js │ ├── version.js │ ├── volumecontrol.js │ └── websocket.js └── styles │ ├── button.css │ ├── connectionmodal.css │ ├── custom-theme │ ├── images │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_55_BBBBBB_40x100.png │ │ ├── ui-bg_flat_65_777777_40x100.png │ │ ├── ui-bg_flat_75_444444_40x100.png │ │ ├── ui-bg_flat_75_555555_40x100.png │ │ ├── ui-bg_flat_75_777777_40x100.png │ │ ├── ui-bg_flat_95_CCCCCC_40x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_333333_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_CC6600_256x240.png │ │ └── ui-icons_FF9900_256x240.png │ ├── jquery-ui-1.10.0.custom.css │ └── jquery-ui-1.10.0.custom.min.css │ ├── dialog.css │ ├── fonts.css │ ├── index.css │ ├── scenelist.css │ ├── sourcelist.css │ └── volumebar.css ├── WebSocketAPIPlugin ├── .gitignore ├── Configuration.cpp ├── Configuration.h ├── MessageHandling.cpp ├── MessageHandling.h ├── OBSRemote.h ├── WebSocketAPIPlugin.cpp ├── WebSocketAPIPlugin.rc ├── WebSocketAPIPlugin.vcproj ├── WebSocketAPIPlugin.vcxproj ├── WebSocketMain.cpp ├── WebSocketMain.h ├── favicon.ico ├── jansson-2.4 │ ├── CHANGES │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README.rst │ ├── aclocal.m4 │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── apiref.rst │ │ ├── changes.rst │ │ ├── conf.py │ │ ├── conformance.rst │ │ ├── ext │ │ │ └── refcounting.py │ │ ├── gettingstarted.rst │ │ ├── github_commits.c │ │ ├── index.rst │ │ ├── portability.rst │ │ ├── tutorial.rst │ │ └── upgrading.rst │ ├── install-sh │ ├── jansson.pc.in │ ├── ltmain.sh │ ├── missing │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dump.c │ │ ├── error.c │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── jansson.def │ │ ├── jansson.h │ │ ├── jansson_config.h │ │ ├── jansson_config.h.in │ │ ├── jansson_private.h │ │ ├── load.c │ │ ├── memory.c │ │ ├── pack_unpack.c │ │ ├── strbuffer.c │ │ ├── strbuffer.h │ │ ├── strconv.c │ │ ├── utf.c │ │ ├── utf.h │ │ └── value.c │ ├── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bin │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── json_process.c │ │ ├── run-suites │ │ ├── scripts │ │ │ ├── run-tests.sh │ │ │ └── valgrind.sh │ │ └── suites │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── api │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── check-exports │ │ │ ├── run │ │ │ ├── test_array.c │ │ │ ├── test_copy.c │ │ │ ├── test_dump.c │ │ │ ├── test_dump_callback.c │ │ │ ├── test_equal.c │ │ │ ├── test_load.c │ │ │ ├── test_load_callback.c │ │ │ ├── test_loadb.c │ │ │ ├── test_memory_funcs.c │ │ │ ├── test_number.c │ │ │ ├── test_object.c │ │ │ ├── test_pack.c │ │ │ ├── test_simple.c │ │ │ ├── test_unpack.c │ │ │ └── util.h │ │ │ ├── invalid-unicode │ │ │ ├── encoded-surrogate-half │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-after-backslash │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-array │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-bigger-int │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-escape │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-exponent │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-identifier │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-int │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-real-after-e │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-string │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── lone-invalid-utf-8 │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── lone-utf-8-continuation-byte │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── not-in-unicode-range │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── overlong-3-byte-encoding │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── overlong-4-byte-encoding │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── overlong-ascii-encoding │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── restricted-utf-8 │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── run │ │ │ └── truncated-utf-8 │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid │ │ │ ├── apostrophe │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── ascii-unicode-identifier │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── brace-comma │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── bracket-comma │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── bracket-one-comma │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── empty │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── escaped-null-byte-in-string │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── extra-comma-in-array │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── extra-comma-in-multiline-array │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── garbage-after-newline │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── garbage-at-the-end │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── integer-starting-with-zero │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-escape │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-identifier │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-negative-integer │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-negative-real │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-second-surrogate │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── lone-open-brace │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── lone-open-bracket │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── lone-second-surrogate │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── minus-sign-without-number │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── negative-integer-starting-with-zero │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── null-byte-in-string │ │ │ │ ├── error │ │ │ │ ├── input │ │ │ │ └── nostrip │ │ │ ├── null-byte-outside-string │ │ │ │ ├── error │ │ │ │ ├── input │ │ │ │ └── nostrip │ │ │ ├── null │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── object-apostrophes │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── object-garbage-at-end │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── object-in-unterminated-array │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── object-no-colon │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── object-no-value │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── object-unterminated-value │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── real-garbage-after-e │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── real-negative-overflow │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── real-positive-overflow │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── real-truncated-at-e │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── real-truncated-at-point │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── run │ │ │ ├── tab-character-in-string │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── too-big-negative-integer │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── too-big-positive-integer │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── truncated-unicode-surrogate │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── unicode-identifier │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── unterminated-array-and-object │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── unterminated-array │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── unterminated-empty-key │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── unterminated-key │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── unterminated-object-and-array │ │ │ │ ├── error │ │ │ │ └── input │ │ │ └── unterminated-string │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ └── valid │ │ │ ├── complex-array │ │ │ ├── input │ │ │ └── output │ │ │ ├── empty-array │ │ │ ├── input │ │ │ └── output │ │ │ ├── empty-object-in-array │ │ │ ├── input │ │ │ └── output │ │ │ ├── empty-object │ │ │ ├── input │ │ │ └── output │ │ │ ├── empty-string │ │ │ ├── input │ │ │ └── output │ │ │ ├── escaped-utf-control-char │ │ │ ├── input │ │ │ └── output │ │ │ ├── false │ │ │ ├── input │ │ │ └── output │ │ │ ├── negative-int │ │ │ ├── input │ │ │ └── output │ │ │ ├── negative-one │ │ │ ├── input │ │ │ └── output │ │ │ ├── negative-zero │ │ │ ├── input │ │ │ └── output │ │ │ ├── null │ │ │ ├── input │ │ │ └── output │ │ │ ├── one-byte-utf-8 │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-capital-e-negative-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-capital-e-positive-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-capital-e │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-fraction-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-negative-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-positive-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-underflow │ │ │ ├── input │ │ │ └── output │ │ │ ├── run │ │ │ ├── short-string │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-ascii-string │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-int-0 │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-int-1 │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-int-123 │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-object │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-real │ │ │ ├── input │ │ │ └── output │ │ │ ├── string-escapes │ │ │ ├── input │ │ │ └── output │ │ │ ├── three-byte-utf-8 │ │ │ ├── input │ │ │ └── output │ │ │ ├── true │ │ │ ├── input │ │ │ └── output │ │ │ ├── two-byte-utf-8 │ │ │ ├── input │ │ │ └── output │ │ │ ├── utf-8-string │ │ │ ├── input │ │ │ └── output │ │ │ └── utf-surrogate-four-byte-encoding │ │ │ ├── input │ │ │ └── output │ └── win32 │ │ ├── jansson_config.h │ │ └── vs2008 │ │ ├── .gitignore │ │ ├── jansson.vcproj │ │ └── jansson.vcxproj ├── libwebsockets │ ├── .gitignore │ ├── COPYING │ ├── INSTALL │ ├── Makefile.am │ ├── README-test-server │ ├── README.rst │ ├── autogen.sh │ ├── configure.ac │ ├── lib │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── base64-decode.c │ │ ├── client-handshake.c │ │ ├── extension-deflate-frame.c │ │ ├── extension-deflate-frame.h │ │ ├── extension-deflate-stream.c │ │ ├── extension-deflate-stream.h │ │ ├── extension-x-google-mux.c │ │ ├── extension-x-google-mux.h │ │ ├── extension.c │ │ ├── handshake.c │ │ ├── libwebsockets.c │ │ ├── libwebsockets.h │ │ ├── md5.c │ │ ├── parsers.c │ │ ├── private-libwebsockets.h │ │ └── sha-1.c │ ├── libwebsockets-api-doc.html │ ├── libwebsockets.pc.in │ ├── libwebsockets.spec │ ├── scripts │ │ └── kernel-doc │ ├── test-server │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── favicon.ico │ │ ├── test-client.c │ │ ├── test-fraggle.c │ │ ├── test-ping.c │ │ ├── test-server-extpoll.c │ │ ├── test-server.c │ │ └── test.html │ └── win32port │ │ ├── client │ │ ├── client.vcxproj │ │ └── client.vcxproj.filters │ │ ├── libwebsocketswin32 │ │ ├── ReadMe.txt │ │ ├── libwebsocketswin32.vcproj │ │ ├── libwebsocketswin32.vcxproj │ │ └── libwebsocketswin32.vcxproj.filters │ │ ├── server │ │ ├── server.vcxproj │ │ └── server.vcxproj.filters │ │ ├── win32helpers │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── getopt_long.c │ │ ├── gettimeofday.c │ │ ├── gettimeofday.h │ │ ├── netdb.h │ │ ├── strings.h │ │ ├── sys │ │ │ └── time.h │ │ ├── unistd.h │ │ ├── websock-w32.c │ │ └── websock-w32.h │ │ ├── win32port.sln │ │ └── zlib │ │ ├── ZLib.vcproj │ │ ├── ZLib.vcxproj │ │ ├── ZLib.vcxproj.filters │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzio.c │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── polarssl-1.2.5 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── DartConfiguration.tcl │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── doxygen │ │ ├── input │ │ │ ├── doc_encdec.h │ │ │ ├── doc_hashing.h │ │ │ ├── doc_mainpage.h │ │ │ ├── doc_rng.h │ │ │ ├── doc_ssltls.h │ │ │ ├── doc_tcpip.h │ │ │ └── doc_x509.h │ │ └── polarssl.doxyfile │ ├── include │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── polarssl │ │ │ ├── aes.h │ │ │ ├── arc4.h │ │ │ ├── asn1.h │ │ │ ├── asn1write.h │ │ │ ├── base64.h │ │ │ ├── bignum.h │ │ │ ├── blowfish.h │ │ │ ├── bn_mul.h │ │ │ ├── camellia.h │ │ │ ├── certs.h │ │ │ ├── cipher.h │ │ │ ├── cipher_wrap.h │ │ │ ├── config.h │ │ │ ├── ctr_drbg.h │ │ │ ├── debug.h │ │ │ ├── des.h │ │ │ ├── dhm.h │ │ │ ├── entropy.h │ │ │ ├── entropy_poll.h │ │ │ ├── error.h │ │ │ ├── gcm.h │ │ │ ├── havege.h │ │ │ ├── md.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── md_wrap.h │ │ │ ├── net.h │ │ │ ├── openssl.h │ │ │ ├── padlock.h │ │ │ ├── pbkdf2.h │ │ │ ├── pem.h │ │ │ ├── pkcs11.h │ │ │ ├── rsa.h │ │ │ ├── sha1.h │ │ │ ├── sha2.h │ │ │ ├── sha4.h │ │ │ ├── ssl.h │ │ │ ├── ssl_cache.h │ │ │ ├── timing.h │ │ │ ├── version.h │ │ │ ├── x509.h │ │ │ ├── x509write.h │ │ │ └── xtea.h │ ├── library │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes.c │ │ ├── arc4.c │ │ ├── asn1parse.c │ │ ├── asn1write.c │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── blowfish.c │ │ ├── camellia.c │ │ ├── certs.c │ │ ├── cipher.c │ │ ├── cipher_wrap.c │ │ ├── ctr_drbg.c │ │ ├── debug.c │ │ ├── des.c │ │ ├── dhm.c │ │ ├── entropy.c │ │ ├── entropy_poll.c │ │ ├── error.c │ │ ├── gcm.c │ │ ├── havege.c │ │ ├── md.c │ │ ├── md2.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── md_wrap.c │ │ ├── net.c │ │ ├── padlock.c │ │ ├── pbkdf2.c │ │ ├── pem.c │ │ ├── pkcs11.c │ │ ├── rsa.c │ │ ├── sha1.c │ │ ├── sha2.c │ │ ├── sha4.c │ │ ├── ssl_cache.c │ │ ├── ssl_cli.c │ │ ├── ssl_srv.c │ │ ├── ssl_tls.c │ │ ├── timing.c │ │ ├── version.c │ │ ├── x509parse.c │ │ ├── x509write.c │ │ └── xtea.c │ ├── programs │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes │ │ │ ├── CMakeLists.txt │ │ │ ├── aescrypt2.c │ │ │ └── crypt_and_hash.c │ │ ├── hash │ │ │ ├── CMakeLists.txt │ │ │ ├── generic_sum.c │ │ │ ├── hello.c │ │ │ ├── md5sum.c │ │ │ ├── sha1sum.c │ │ │ └── sha2sum.c │ │ ├── pkey │ │ │ ├── CMakeLists.txt │ │ │ ├── dh_client.c │ │ │ ├── dh_genprime.c │ │ │ ├── dh_prime.txt │ │ │ ├── dh_server.c │ │ │ ├── key_app.c │ │ │ ├── key_app_writer.c │ │ │ ├── mpi_demo.c │ │ │ ├── rsa_decrypt.c │ │ │ ├── rsa_encrypt.c │ │ │ ├── rsa_genkey.c │ │ │ ├── rsa_priv.txt │ │ │ ├── rsa_pub.txt │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_sign_pss.c │ │ │ ├── rsa_verify.c │ │ │ └── rsa_verify_pss.c │ │ ├── random │ │ │ ├── CMakeLists.txt │ │ │ ├── gen_entropy.c │ │ │ ├── gen_random_ctr_drbg.c │ │ │ └── gen_random_havege.c │ │ ├── ssl │ │ │ ├── CA-HOWTO.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── ssl_client1.c │ │ │ ├── ssl_client2.c │ │ │ ├── ssl_fork_server.c │ │ │ ├── ssl_mail_client.c │ │ │ ├── ssl_server.c │ │ │ ├── ssl_server2.c │ │ │ └── test-ca │ │ │ │ ├── cert_digest.key │ │ │ │ ├── cert_example.crt │ │ │ │ ├── cert_example_multi.crt │ │ │ │ ├── cert_example_wildcard.crt │ │ │ │ ├── cert_example_www.crt │ │ │ │ ├── cert_md2.crt │ │ │ │ ├── cert_md4.crt │ │ │ │ ├── cert_md5.crt │ │ │ │ ├── cert_sha1.crt │ │ │ │ ├── cert_sha224.crt │ │ │ │ ├── cert_sha256.crt │ │ │ │ ├── cert_sha384.crt │ │ │ │ ├── cert_sha512.crt │ │ │ │ ├── client1.crt │ │ │ │ ├── client1.key │ │ │ │ ├── client2.crt │ │ │ │ ├── client2.key │ │ │ │ ├── client2.pfx │ │ │ │ ├── crl.pem │ │ │ │ ├── crl_md2.pem │ │ │ │ ├── crl_md4.pem │ │ │ │ ├── crl_md5.pem │ │ │ │ ├── crl_sha1.pem │ │ │ │ ├── crl_sha224.pem │ │ │ │ ├── crl_sha256.pem │ │ │ │ ├── crl_sha384.pem │ │ │ │ ├── crl_sha512.pem │ │ │ │ ├── gen_test_ca.sh │ │ │ │ ├── index │ │ │ │ ├── index.attr │ │ │ │ ├── newcerts │ │ │ │ ├── 01.pem │ │ │ │ ├── 02.pem │ │ │ │ ├── 03.pem │ │ │ │ ├── 04.pem │ │ │ │ ├── 05.pem │ │ │ │ ├── 06.pem │ │ │ │ ├── 07.pem │ │ │ │ ├── 08.pem │ │ │ │ ├── 09.pem │ │ │ │ ├── 0A.pem │ │ │ │ ├── 0B.pem │ │ │ │ ├── 0C.pem │ │ │ │ ├── 0D.pem │ │ │ │ ├── 0E.pem │ │ │ │ ├── 0F.pem │ │ │ │ ├── 10.pem │ │ │ │ └── 11.pem │ │ │ │ ├── serial │ │ │ │ ├── server1.crt │ │ │ │ ├── server1.key │ │ │ │ ├── server1.pub │ │ │ │ ├── server2.crt │ │ │ │ ├── server2.key │ │ │ │ ├── sslconf.txt │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca.key │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmark.c │ │ │ ├── o_p_test.c │ │ │ ├── selftest.c │ │ │ ├── ssl_cert_test.c │ │ │ └── ssl_test.c │ │ ├── util │ │ │ ├── CMakeLists.txt │ │ │ └── strerror.c │ │ ├── wince_main.c │ │ └── x509 │ │ │ ├── CMakeLists.txt │ │ │ ├── cert_app.c │ │ │ ├── cert_req.c │ │ │ └── crl_app.c │ ├── scripts │ │ ├── bump_version.sh │ │ ├── check_doxy_blocks.pl │ │ ├── data_files │ │ │ └── error.fmt │ │ └── generate_errors.pl │ ├── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── compat.sh │ │ ├── data_files │ │ │ ├── cert_example_multi.crt │ │ │ ├── cert_example_multi_nocn.crt │ │ │ ├── cert_example_wildcard.crt │ │ │ ├── cert_md2.crt │ │ │ ├── cert_md4.crt │ │ │ ├── cert_md5.crt │ │ │ ├── cert_sha1.crt │ │ │ ├── cert_sha224.crt │ │ │ ├── cert_sha256.crt │ │ │ ├── cert_sha384.crt │ │ │ ├── cert_sha512.crt │ │ │ ├── crl.pem │ │ │ ├── crl_expired.pem │ │ │ ├── crl_md2.pem │ │ │ ├── crl_md4.pem │ │ │ ├── crl_md5.pem │ │ │ ├── crl_sha1.pem │ │ │ ├── crl_sha224.pem │ │ │ ├── crl_sha256.pem │ │ │ ├── crl_sha384.pem │ │ │ ├── crl_sha512.pem │ │ │ ├── format_gen.key │ │ │ ├── format_gen.pub │ │ │ ├── format_pkcs12.fmt │ │ │ ├── format_rsa.key │ │ │ ├── hash_file_1 │ │ │ ├── hash_file_2 │ │ │ ├── hash_file_3 │ │ │ ├── hash_file_4 │ │ │ ├── keyfile │ │ │ ├── keyfile.3des │ │ │ ├── keyfile.aes128 │ │ │ ├── keyfile.aes192 │ │ │ ├── keyfile.aes256 │ │ │ ├── keyfile.des │ │ │ ├── mpi_10 │ │ │ ├── mpi_too_big │ │ │ ├── server1.crt │ │ │ ├── server1.key │ │ │ ├── server1.req.md4 │ │ │ ├── server1.req.md5 │ │ │ ├── server1.req.sha1 │ │ │ ├── server1.req.sha224 │ │ │ ├── server1.req.sha256 │ │ │ ├── server1.req.sha384 │ │ │ ├── server1.req.sha512 │ │ │ ├── server2.crt │ │ │ ├── server2.key │ │ │ ├── test-ca.crt │ │ │ └── test-ca.key │ │ ├── fct.h │ │ ├── scripts │ │ │ ├── gen_ctr_drbg.pl │ │ │ ├── gen_gcm_decrypt.pl │ │ │ ├── gen_gcm_encrypt.pl │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ └── generate_code.pl │ │ └── suites │ │ │ └── helpers.function │ └── visualc │ │ ├── VS2010 │ │ ├── PolarSSL.sln │ │ ├── PolarSSL.vcxproj │ │ ├── aescrypt2.vcxproj │ │ ├── benchmark.vcxproj │ │ ├── crypt_and_hash.vcxproj │ │ ├── dh_client.vcxproj │ │ ├── dh_genprime.vcxproj │ │ ├── dh_server.vcxproj │ │ ├── gen_random_ctr_drbg.vcxproj │ │ ├── gen_random_havege.vcxproj │ │ ├── generic_sum.vcxproj │ │ ├── md5sum.vcxproj │ │ ├── mpi_demo.vcxproj │ │ ├── rsa_genkey.vcxproj │ │ ├── rsa_sign.vcxproj │ │ ├── rsa_sign_pss.vcxproj │ │ ├── rsa_verify.vcxproj │ │ ├── rsa_verify_pss.vcxproj │ │ ├── selftest.vcxproj │ │ ├── sha1sum.vcxproj │ │ ├── sha2sum.vcxproj │ │ ├── ssl_client1.vcxproj │ │ ├── ssl_client2.vcxproj │ │ └── ssl_server.vcxproj │ │ └── VS6 │ │ ├── aescrypt2.dsp │ │ ├── benchmark.dsp │ │ ├── dh_client.dsp │ │ ├── dh_genprime.dsp │ │ ├── dh_prime.txt │ │ ├── dh_server.dsp │ │ ├── hello.dsp │ │ ├── md5sum.dsp │ │ ├── mpi_demo.dsp │ │ ├── polarssl.dsp │ │ ├── polarssl.dsw │ │ ├── polarssl.vcproj │ │ ├── rsa_genkey.dsp │ │ ├── rsa_priv.txt │ │ ├── rsa_pub.txt │ │ ├── rsa_sign.dsp │ │ ├── rsa_verify.dsp │ │ ├── selftest.dsp │ │ ├── sha1sum.dsp │ │ ├── sha2sum.dsp │ │ ├── ssl_cert_test.dsp │ │ ├── ssl_client1.dsp │ │ ├── ssl_client2.dsp │ │ ├── ssl_server.dsp │ │ └── ssl_test.dsp └── resource.h └── installer ├── .gitignore ├── OBSRemoteManualInstall ├── 32-bit │ └── WebSocketAPIPlugin.dll └── 64-bit │ └── WebSocketAPIPlugin.dll ├── SimpleFC.dll ├── gplv2.txt └── installer.nsi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidClientWorkspace/.gitignore: -------------------------------------------------------------------------------- 1 | .metadata/ 2 | -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/.classpath -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/.gitignore -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/.project -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/assets/fonts/neometricmedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/assets/fonts/neometricmedium.ttf -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/ic_launcher-web.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/libs/autobahn.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/libs/autobahn.jar -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/libs/gson-2.2.4-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/libs/gson-2.2.4-javadoc.jar -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/libs/gson-2.2.4-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/libs/gson-2.2.4-sources.jar -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/libs/jackson-core-asl-1.9.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/libs/jackson-core-asl-1.9.7.jar -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/libs/jackson-mapper-asl-1.9.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/libs/jackson-mapper-asl-1.9.7.jar -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/proguard-project.txt -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/project.properties -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/desktop_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/desktop_off.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/desktop_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/desktop_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/mic_off.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-hdpi/mic_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/desktop_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/desktop_off.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/desktop_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/desktop_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/mic_off.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-ldpi/mic_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/desktop_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/desktop_off.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/desktop_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/desktop_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/mic_off.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-mdpi/mic_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/desktop_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/desktop_off.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/desktop_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/desktop_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/mic_off.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-xhdpi/mic_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-xxhdpi/desktop_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-xxhdpi/desktop_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-xxhdpi/mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-xxhdpi/mic_off.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable-xxhdpi/mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable-xxhdpi/mic_on.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/button_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/button_default.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/button_pressed.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/buttonselector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/buttonselector.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/desktop_offs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/desktop_offs.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/desktop_ons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/desktop_ons.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/microphone_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/microphone_off.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/microphone_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/microphone_on.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/notification_icon.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/remotelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/remotelogo.png -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/sceneselected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/sceneselected.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/sceneunselected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/sceneunselected.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/sourceoff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/sourceoff.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/sourceon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/sourceon.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/drawable/volume_clip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/drawable/volume_clip.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/layout/activity_remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/layout/activity_remote.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/layout/audio_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/layout/audio_dialog.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/layout/password_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/layout/password_dialog.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/layout/remote_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/layout/remote_notification.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/layout/scene_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/layout/scene_item.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/layout/source_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/layout/source_item.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/layout/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/layout/splash.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/layout/volume_control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/layout/volume_control.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/menu/remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/menu/remote.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/values-v11/styles.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/values-v9/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/values-v9/styles.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/values/colors.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/values/dimens.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/OBSRemote/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/OBSRemote/res/values/styles.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/.gitignore -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/CHANGELOG.md -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/README.md -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/demo/.gitignore -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/demo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/demo/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/demo/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/demo/ant.properties -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/demo/app-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/demo/app-description.txt -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/demo/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/demo/build.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/demo/pom.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/demo/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/demo/proguard-project.txt -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/demo/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/demo/project.properties -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/demo/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/demo/res/values/ids.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/library/.gitignore -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/library/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/library/ant.properties -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/library/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/library/build.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/library/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/library/pom.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/pom.xml -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/tools/demo-sign-align.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/tools/demo-sign-align.sh -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/tools/doc-dslv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/tools/doc-dslv.sh -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/tools/dslv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/tools/dslv.py -------------------------------------------------------------------------------- /AndroidClientWorkspace/drag-sort-listview/tools/pkg-dslv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/AndroidClientWorkspace/drag-sort-listview/tools/pkg-dslv.sh -------------------------------------------------------------------------------- /ImageSources/CheckSprite.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/CheckSprite.psd -------------------------------------------------------------------------------- /ImageSources/DoubleArrow.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/DoubleArrow.ai -------------------------------------------------------------------------------- /ImageSources/EyeSprite.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/EyeSprite.psd -------------------------------------------------------------------------------- /ImageSources/Microphone.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/Microphone.ai -------------------------------------------------------------------------------- /ImageSources/Microphone.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/Microphone.psd -------------------------------------------------------------------------------- /ImageSources/OBSRemoteLogo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/OBSRemoteLogo.ai -------------------------------------------------------------------------------- /ImageSources/RemoteLogo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/RemoteLogo.psd -------------------------------------------------------------------------------- /ImageSources/RemoteLogo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/RemoteLogo512.png -------------------------------------------------------------------------------- /ImageSources/Speaker.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/Speaker.ai -------------------------------------------------------------------------------- /ImageSources/Speaker.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/Speaker.psd -------------------------------------------------------------------------------- /ImageSources/eye.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/ImageSources/eye.ai -------------------------------------------------------------------------------- /OBSRemote.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/OBSRemote.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/README.md -------------------------------------------------------------------------------- /WebClient/.gitignore: -------------------------------------------------------------------------------- 1 | .metadata 2 | .db 3 | 4 | -------------------------------------------------------------------------------- /WebClient/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/.project -------------------------------------------------------------------------------- /WebClient/V1_01/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/favicon.ico -------------------------------------------------------------------------------- /WebClient/V1_01/fonts/neometricmedium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/fonts/neometricmedium.eot -------------------------------------------------------------------------------- /WebClient/V1_01/fonts/neometricmedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/fonts/neometricmedium.ttf -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/OBSLogo54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/OBSLogo54.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/chatsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/chatsprite.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/checkboxsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/checkboxsprite.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/connectionsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/connectionsprite.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/desktopbuttonsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/desktopbuttonsprite.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/doublearrowsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/doublearrowsmall.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/eyesprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/eyesprite.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/favicon.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/gearsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/gearsprite.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/micbuttonsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/micbuttonsprite.png -------------------------------------------------------------------------------- /WebClient/V1_01/imgs/volumebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/imgs/volumebar.png -------------------------------------------------------------------------------- /WebClient/V1_01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/index.html -------------------------------------------------------------------------------- /WebClient/V1_01/js/browserDetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/browserDetect.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/connectionmodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/connectionmodal.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/jquery-1.9.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/jquery-1.9.0.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/jquery-ui-1.10.0.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/jquery-ui-1.10.0.custom.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/jquery-ui-1.10.0.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/jquery-ui-1.10.0.custom.min.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/main.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/resizeDiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/resizeDiv.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/scenelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/scenelist.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/sourcelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/sourcelist.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/streamconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/streamconfig.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/version.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/volumecontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/volumecontrol.js -------------------------------------------------------------------------------- /WebClient/V1_01/js/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/js/websocket.js -------------------------------------------------------------------------------- /WebClient/V1_01/styles/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/button.css -------------------------------------------------------------------------------- /WebClient/V1_01/styles/connectionmodal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/connectionmodal.css -------------------------------------------------------------------------------- /WebClient/V1_01/styles/custom-theme/jquery-ui-1.10.0.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/custom-theme/jquery-ui-1.10.0.custom.css -------------------------------------------------------------------------------- /WebClient/V1_01/styles/custom-theme/jquery-ui-1.10.0.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/custom-theme/jquery-ui-1.10.0.custom.min.css -------------------------------------------------------------------------------- /WebClient/V1_01/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/fonts.css -------------------------------------------------------------------------------- /WebClient/V1_01/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/index.css -------------------------------------------------------------------------------- /WebClient/V1_01/styles/scenelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/scenelist.css -------------------------------------------------------------------------------- /WebClient/V1_01/styles/sourcelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/sourcelist.css -------------------------------------------------------------------------------- /WebClient/V1_01/styles/streamconfig.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/streamconfig.css -------------------------------------------------------------------------------- /WebClient/V1_01/styles/volumebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/V1_01/styles/volumebar.css -------------------------------------------------------------------------------- /WebClient/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/favicon.ico -------------------------------------------------------------------------------- /WebClient/fonts/neometricmedium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/fonts/neometricmedium.eot -------------------------------------------------------------------------------- /WebClient/fonts/neometricmedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/fonts/neometricmedium.ttf -------------------------------------------------------------------------------- /WebClient/imgs/.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | -------------------------------------------------------------------------------- /WebClient/imgs/OBSLogo54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/OBSLogo54.png -------------------------------------------------------------------------------- /WebClient/imgs/chatsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/chatsprite.png -------------------------------------------------------------------------------- /WebClient/imgs/checkboxsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/checkboxsprite.png -------------------------------------------------------------------------------- /WebClient/imgs/connectionsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/connectionsprite.png -------------------------------------------------------------------------------- /WebClient/imgs/desktopbuttonsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/desktopbuttonsprite.png -------------------------------------------------------------------------------- /WebClient/imgs/doublearrowsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/doublearrowsmall.png -------------------------------------------------------------------------------- /WebClient/imgs/eyesprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/eyesprite.png -------------------------------------------------------------------------------- /WebClient/imgs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/favicon.png -------------------------------------------------------------------------------- /WebClient/imgs/gearsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/gearsprite.png -------------------------------------------------------------------------------- /WebClient/imgs/live_viewers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/live_viewers.png -------------------------------------------------------------------------------- /WebClient/imgs/micbuttonsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/micbuttonsprite.png -------------------------------------------------------------------------------- /WebClient/imgs/volumebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/imgs/volumebar.png -------------------------------------------------------------------------------- /WebClient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/index.html -------------------------------------------------------------------------------- /WebClient/js/browserDetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/browserDetect.js -------------------------------------------------------------------------------- /WebClient/js/connectionmodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/connectionmodal.js -------------------------------------------------------------------------------- /WebClient/js/cryptojs/enc-base64-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/cryptojs/enc-base64-min.js -------------------------------------------------------------------------------- /WebClient/js/cryptojs/sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/cryptojs/sha256.js -------------------------------------------------------------------------------- /WebClient/js/jquery-1.9.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/jquery-1.9.0.js -------------------------------------------------------------------------------- /WebClient/js/jquery-ui-1.10.0.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/jquery-ui-1.10.0.custom.js -------------------------------------------------------------------------------- /WebClient/js/jquery-ui-1.10.0.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/jquery-ui-1.10.0.custom.min.js -------------------------------------------------------------------------------- /WebClient/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/main.js -------------------------------------------------------------------------------- /WebClient/js/resizeDiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/resizeDiv.js -------------------------------------------------------------------------------- /WebClient/js/scenelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/scenelist.js -------------------------------------------------------------------------------- /WebClient/js/sourcelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/sourcelist.js -------------------------------------------------------------------------------- /WebClient/js/streamconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/streamconfig.js -------------------------------------------------------------------------------- /WebClient/js/twitch-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/twitch-api.js -------------------------------------------------------------------------------- /WebClient/js/twitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/twitch.js -------------------------------------------------------------------------------- /WebClient/js/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/version.js -------------------------------------------------------------------------------- /WebClient/js/volumecontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/volumecontrol.js -------------------------------------------------------------------------------- /WebClient/js/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/js/websocket.js -------------------------------------------------------------------------------- /WebClient/styles/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/button.css -------------------------------------------------------------------------------- /WebClient/styles/connectionmodal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/connectionmodal.css -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/images/ui-icons_333333_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/images/ui-icons_333333_256x240.png -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/images/ui-icons_CC6600_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/images/ui-icons_CC6600_256x240.png -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/images/ui-icons_FF9900_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/images/ui-icons_FF9900_256x240.png -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/jquery-ui-1.10.0.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/jquery-ui-1.10.0.custom.css -------------------------------------------------------------------------------- /WebClient/styles/custom-theme/jquery-ui-1.10.0.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/custom-theme/jquery-ui-1.10.0.custom.min.css -------------------------------------------------------------------------------- /WebClient/styles/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/dialog.css -------------------------------------------------------------------------------- /WebClient/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/fonts.css -------------------------------------------------------------------------------- /WebClient/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/index.css -------------------------------------------------------------------------------- /WebClient/styles/scenelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/scenelist.css -------------------------------------------------------------------------------- /WebClient/styles/sourcelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/sourcelist.css -------------------------------------------------------------------------------- /WebClient/styles/volumebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebClient/styles/volumebar.css -------------------------------------------------------------------------------- /WebSocketAPIPlugin/.gitignore: -------------------------------------------------------------------------------- 1 | Release/ 2 | x64/ 3 | Output/ 4 | Build/ 5 | Debug/ 6 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/Configuration.cpp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/Configuration.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/MessageHandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/MessageHandling.cpp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/MessageHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/MessageHandling.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/OBSRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/OBSRemote.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/WebSocketAPIPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/WebSocketAPIPlugin.cpp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/WebSocketAPIPlugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/WebSocketAPIPlugin.rc -------------------------------------------------------------------------------- /WebSocketAPIPlugin/WebSocketAPIPlugin.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/WebSocketAPIPlugin.vcproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/WebSocketAPIPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/WebSocketAPIPlugin.vcxproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/WebSocketMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/WebSocketMain.cpp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/WebSocketMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/WebSocketMain.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/favicon.ico -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/CHANGES -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/LICENSE -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/Makefile.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/README.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/aclocal.m4 -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/config.guess -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/config.h.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/config.sub -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/configure -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/configure.ac -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/depcomp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/Makefile.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/README -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/apiref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/apiref.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/changes.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/conf.py -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/conformance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/conformance.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/ext/refcounting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/ext/refcounting.py -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/gettingstarted.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/github_commits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/github_commits.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/index.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/portability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/portability.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/tutorial.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/doc/upgrading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/doc/upgrading.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/install-sh -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/jansson.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/jansson.pc.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/ltmain.sh -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/missing -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/Makefile.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/dump.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/error.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/hashtable.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/hashtable.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/jansson.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/jansson.def -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/jansson.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/jansson_config.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/jansson_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/jansson_config.h.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/jansson_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/jansson_private.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/load.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/memory.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/pack_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/pack_unpack.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/strbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/strbuffer.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/strbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/strbuffer.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/strconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/strconv.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/utf.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/utf.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/src/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/src/value.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/Makefile.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/bin/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/bin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/bin/Makefile.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/bin/json_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/bin/json_process.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/run-suites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/run-suites -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/scripts/run-tests.sh -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/scripts/valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/scripts/valgrind.sh -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/Makefile.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/Makefile.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/check-exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/check-exports -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/run -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_array.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_copy.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_dump.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_dump_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_dump_callback.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_equal.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_load.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_load_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_load_callback.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_loadb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_loadb.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_memory_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_memory_funcs.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_number.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_object.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_pack.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_simple.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/test_unpack.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/api/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/api/util.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/encoded-surrogate-half/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xed near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-after-backslash/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unable to decode byte 0xe5 near '"\' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-array/error: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | unable to decode byte 0xe5 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-bigger-int/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unable to decode byte 0xe5 near '123' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-escape/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unable to decode byte 0xe5 near '"\u' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-exponent/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unable to decode byte 0xe5 near '1e1' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-identifier/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe5 near 'a' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-int/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe5 near '0' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-real-after-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unable to decode byte 0xe5 near '1e' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe5 near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/lone-invalid-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | unable to decode byte 0xe5 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/lone-utf-8-continuation-byte/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0x81 near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/not-in-unicode-range/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xf4 near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/overlong-3-byte-encoding/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe0 near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/overlong-4-byte-encoding/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xf0 near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/overlong-ascii-encoding/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xc1 near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/restricted-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xfd near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/run -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid-unicode/truncated-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe0 near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/apostrophe/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near ''' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/apostrophe/input: -------------------------------------------------------------------------------- 1 | [' 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/ascii-unicode-identifier/error: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | '[' or '{' expected near 'a' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/ascii-unicode-identifier/input: -------------------------------------------------------------------------------- 1 | aå 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/brace-comma/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near ',' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/brace-comma/input: -------------------------------------------------------------------------------- 1 | {, 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/bracket-comma/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unexpected token near ',' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/bracket-comma/input: -------------------------------------------------------------------------------- 1 | [, 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/bracket-one-comma/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/bracket-one-comma/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/bracket-one-comma/input: -------------------------------------------------------------------------------- 1 | [1, 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/empty/error: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | '[' or '{' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/empty/input: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/escaped-null-byte-in-string/input: -------------------------------------------------------------------------------- 1 | ["\u0000 (null byte not allowed)"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/extra-comma-in-array/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unexpected token near ']' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/extra-comma-in-array/input: -------------------------------------------------------------------------------- 1 | [1,] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/extra-comma-in-multiline-array/error: -------------------------------------------------------------------------------- 1 | 6 1 17 2 | unexpected token near ']' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/extra-comma-in-multiline-array/input: -------------------------------------------------------------------------------- 1 | [1, 2 | 2, 3 | 3, 4 | 4, 5 | 5, 6 | ] 7 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/garbage-after-newline/error: -------------------------------------------------------------------------------- 1 | 2 3 11 2 | end of file expected near 'foo' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/garbage-after-newline/input: -------------------------------------------------------------------------------- 1 | [1,2,3] 2 | foo 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/garbage-at-the-end/error: -------------------------------------------------------------------------------- 1 | 1 10 10 2 | end of file expected near 'foo' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/garbage-at-the-end/input: -------------------------------------------------------------------------------- 1 | [1,2,3]foo 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/integer-starting-with-zero/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near '0' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/integer-starting-with-zero/input: -------------------------------------------------------------------------------- 1 | [012] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/invalid-escape/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | invalid escape near '"\a' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/invalid-escape/input: -------------------------------------------------------------------------------- 1 | ["\a <-- invalid escape"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/invalid-identifier/error: -------------------------------------------------------------------------------- 1 | 1 5 5 2 | invalid token near 'troo' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/invalid-identifier/input: -------------------------------------------------------------------------------- 1 | [troo 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/invalid-negative-integer/error: -------------------------------------------------------------------------------- 1 | 1 8 8 2 | ']' expected near 'foo' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/invalid-negative-integer/input: -------------------------------------------------------------------------------- 1 | [-123foo] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/invalid-negative-real/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | ']' expected near 'foo' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/invalid-negative-real/input: -------------------------------------------------------------------------------- 1 | [-123.123foo] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/invalid-second-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 62 62 2 | invalid Unicode '\uD888\u3210' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/lone-open-brace/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 2 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/lone-open-brace/error.strip: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/lone-open-brace/input: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/lone-open-bracket/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 2 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/lone-open-bracket/error.strip: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/lone-open-bracket/input: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/lone-second-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 40 40 2 | invalid Unicode '\uDFAA' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/lone-second-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\uDFAA (second surrogate on it's own)"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/minus-sign-without-number/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near '-' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/minus-sign-without-number/input: -------------------------------------------------------------------------------- 1 | [-foo] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/negative-integer-starting-with-zero/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '-0' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/negative-integer-starting-with-zero/input: -------------------------------------------------------------------------------- 1 | [-012] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/null-byte-in-string/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | control character 0x0 near '"null byte ' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/null-byte-in-string/input: -------------------------------------------------------------------------------- 1 | ["null byte not allowed"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/null-byte-outside-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/null-byte-outside-string/input: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/null/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | '[' or '{' expected near 'null' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/null/input: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-apostrophes/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near ''' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-apostrophes/input: -------------------------------------------------------------------------------- 1 | {'a' 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-garbage-at-end/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | '}' expected near '123' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-garbage-at-end/input: -------------------------------------------------------------------------------- 1 | {"a":"a" 123} 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-in-unterminated-array/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-in-unterminated-array/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-in-unterminated-array/input: -------------------------------------------------------------------------------- 1 | [{} 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-no-colon/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 5 2 | ':' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-no-colon/error.strip: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | ':' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-no-colon/input: -------------------------------------------------------------------------------- 1 | {"a" 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-no-value/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 6 2 | unexpected token near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-no-value/error.strip: -------------------------------------------------------------------------------- 1 | 1 5 5 2 | unexpected token near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-no-value/input: -------------------------------------------------------------------------------- 1 | {"a": 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-unterminated-value/error.normal: -------------------------------------------------------------------------------- 1 | 1 7 7 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-unterminated-value/error.strip: -------------------------------------------------------------------------------- 1 | 1 7 7 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/object-unterminated-value/input: -------------------------------------------------------------------------------- 1 | {"a":"a 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/real-garbage-after-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1e' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/real-garbage-after-e/input: -------------------------------------------------------------------------------- 1 | [1ea] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/real-truncated-at-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1e' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/real-truncated-at-e/input: -------------------------------------------------------------------------------- 1 | [1e] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/real-truncated-at-point/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1.' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/real-truncated-at-point/input: -------------------------------------------------------------------------------- 1 | [1.] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/run -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/tab-character-in-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | control character 0x9 near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/tab-character-in-string/input: -------------------------------------------------------------------------------- 1 | [" <-- tab character"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/too-big-negative-integer/error: -------------------------------------------------------------------------------- 1 | 1 32 32 2 | too big negative integer 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/too-big-positive-integer/error: -------------------------------------------------------------------------------- 1 | 1 31 31 2 | too big integer 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/truncated-unicode-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 46 46 2 | invalid Unicode '\uDADA' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/truncated-unicode-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\uDADA (first surrogate without the second)"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unicode-identifier/error: -------------------------------------------------------------------------------- 1 | 1 1 2 2 | '[' or '{' expected near 'å' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unicode-identifier/input: -------------------------------------------------------------------------------- 1 | å 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-array-and-object/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 3 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-array-and-object/error.strip: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-array-and-object/input: -------------------------------------------------------------------------------- 1 | [{ 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-array/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 5 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-array/error.strip: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-array/input: -------------------------------------------------------------------------------- 1 | ["a" 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-empty-key/error.normal: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unexpected newline near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-empty-key/error.strip: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | premature end of input near '"' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-empty-key/input: -------------------------------------------------------------------------------- 1 | {" 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-key/error.normal: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-key/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-key/input: -------------------------------------------------------------------------------- 1 | {"a 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-object-and-array/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near '[' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-object-and-array/input: -------------------------------------------------------------------------------- 1 | {[ 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-string/error.normal: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-string/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/invalid/unterminated-string/input: -------------------------------------------------------------------------------- 1 | ["a 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/empty-array/input: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/empty-array/output: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/empty-object-in-array/input: -------------------------------------------------------------------------------- 1 | [{}] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/empty-object-in-array/output: -------------------------------------------------------------------------------- 1 | [{}] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/empty-object/input: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/empty-object/output: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/empty-string/input: -------------------------------------------------------------------------------- 1 | [""] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/empty-string/output: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/escaped-utf-control-char/input: -------------------------------------------------------------------------------- 1 | ["\u0012 escaped control character"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/escaped-utf-control-char/output: -------------------------------------------------------------------------------- 1 | ["\u0012 escaped control character"] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/false/input: -------------------------------------------------------------------------------- 1 | [false] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/false/output: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/negative-int/input: -------------------------------------------------------------------------------- 1 | [-123] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/negative-int/output: -------------------------------------------------------------------------------- 1 | [-123] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/negative-one/input: -------------------------------------------------------------------------------- 1 | [-1] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/negative-one/output: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/negative-zero/input: -------------------------------------------------------------------------------- 1 | [-0] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/negative-zero/output: -------------------------------------------------------------------------------- 1 | [0] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/null/input: -------------------------------------------------------------------------------- 1 | [null] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/null/output: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/one-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u002c one-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/one-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | [", one-byte UTF-8"] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-capital-e-negative-exponent/input: -------------------------------------------------------------------------------- 1 | [1E-2] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-capital-e-negative-exponent/output: -------------------------------------------------------------------------------- 1 | [0.01] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-capital-e-positive-exponent/input: -------------------------------------------------------------------------------- 1 | [1E+2] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-capital-e-positive-exponent/output: -------------------------------------------------------------------------------- 1 | [100.0] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-capital-e/input: -------------------------------------------------------------------------------- 1 | [1E22] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-capital-e/output: -------------------------------------------------------------------------------- 1 | [1e22] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-exponent/input: -------------------------------------------------------------------------------- 1 | [123e45] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-fraction-exponent/input: -------------------------------------------------------------------------------- 1 | [123.456e78] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-fraction-exponent/output: -------------------------------------------------------------------------------- 1 | [1.23456e80] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-negative-exponent/input: -------------------------------------------------------------------------------- 1 | [1e-2] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-negative-exponent/output: -------------------------------------------------------------------------------- 1 | [0.01] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-positive-exponent/input: -------------------------------------------------------------------------------- 1 | [1e+2] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-positive-exponent/output: -------------------------------------------------------------------------------- 1 | [100.0] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/real-underflow/output: -------------------------------------------------------------------------------- 1 | [0.0] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/test/suites/valid/run -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/short-string/input: -------------------------------------------------------------------------------- 1 | ["a"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/short-string/output: -------------------------------------------------------------------------------- 1 | ["a"] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-ascii-string/input: -------------------------------------------------------------------------------- 1 | ["abcdefghijklmnopqrstuvwxyz1234567890 "] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-ascii-string/output: -------------------------------------------------------------------------------- 1 | ["abcdefghijklmnopqrstuvwxyz1234567890 "] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-int-0/input: -------------------------------------------------------------------------------- 1 | [0] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-int-0/output: -------------------------------------------------------------------------------- 1 | [0] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-int-1/input: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-int-1/output: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-int-123/input: -------------------------------------------------------------------------------- 1 | [123] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-int-123/output: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-object/input: -------------------------------------------------------------------------------- 1 | {"a":[]} 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-object/output: -------------------------------------------------------------------------------- 1 | {"a": []} -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-real/input: -------------------------------------------------------------------------------- 1 | [123.456789] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/simple-real/output: -------------------------------------------------------------------------------- 1 | [123.456789] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/string-escapes/input: -------------------------------------------------------------------------------- 1 | ["\"\\\/\b\f\n\r\t"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/string-escapes/output: -------------------------------------------------------------------------------- 1 | ["\"\\/\b\f\n\r\t"] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/three-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u0821 three-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/three-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | ["ࠡ three-byte UTF-8"] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/true/input: -------------------------------------------------------------------------------- 1 | [true] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/true/output: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/two-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u0123 two-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/two-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | ["ģ two-byte UTF-8"] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/utf-8-string/input: -------------------------------------------------------------------------------- 1 | ["€þıœəßð some utf-8 ĸʒ×ŋµåäö𝄞"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/utf-8-string/output: -------------------------------------------------------------------------------- 1 | ["€þıœəßð some utf-8 ĸʒ×ŋµåäö𝄞"] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/utf-surrogate-four-byte-encoding/input: -------------------------------------------------------------------------------- 1 | ["\uD834\uDD1E surrogate, four-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/test/suites/valid/utf-surrogate-four-byte-encoding/output: -------------------------------------------------------------------------------- 1 | ["𝄞 surrogate, four-byte UTF-8"] -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/win32/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/win32/jansson_config.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/win32/vs2008/.gitignore: -------------------------------------------------------------------------------- 1 | Build/ 2 | Output/ 3 | 4 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/win32/vs2008/jansson.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/win32/vs2008/jansson.vcproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/jansson-2.4/win32/vs2008/jansson.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/jansson-2.4/win32/vs2008/jansson.vcxproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/.gitignore -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/COPYING -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/INSTALL -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/README-test-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/README-test-server -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/README.rst -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/autogen.sh -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/configure.ac -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/.gitignore -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/base64-decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/base64-decode.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/client-handshake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/client-handshake.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/extension-deflate-frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/extension-deflate-frame.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/extension-deflate-frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/extension-deflate-frame.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/extension-deflate-stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/extension-deflate-stream.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/extension-deflate-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/extension-deflate-stream.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/extension-x-google-mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/extension-x-google-mux.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/extension-x-google-mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/extension-x-google-mux.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/extension.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/handshake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/handshake.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/libwebsockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/libwebsockets.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/libwebsockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/libwebsockets.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/md5.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/parsers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/parsers.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/private-libwebsockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/private-libwebsockets.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/lib/sha-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/lib/sha-1.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/libwebsockets-api-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/libwebsockets-api-doc.html -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/libwebsockets.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/libwebsockets.pc.in -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/libwebsockets.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/libwebsockets.spec -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/scripts/kernel-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/scripts/kernel-doc -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/test-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/test-server/.gitignore -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/test-server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/test-server/Makefile.am -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/test-server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/test-server/favicon.ico -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/test-server/test-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/test-server/test-client.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/test-server/test-fraggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/test-server/test-fraggle.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/test-server/test-ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/test-server/test-ping.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/test-server/test-server-extpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/test-server/test-server-extpoll.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/test-server/test-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/test-server/test-server.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/test-server/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/test-server/test.html -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/client/client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/client/client.vcxproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/server/server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/server/server.vcxproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/win32helpers/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/win32helpers/getopt.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/win32helpers/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/win32helpers/getopt.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/win32helpers/netdb.h: -------------------------------------------------------------------------------- 1 | // Left blank for win32 -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/win32helpers/strings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/win32helpers/sys/time.h: -------------------------------------------------------------------------------- 1 | // left blank -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/win32helpers/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/win32port.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/win32port.sln -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/ZLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/ZLib.vcproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/ZLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/ZLib.vcxproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/adler32.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/compress.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/crc32.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/crc32.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/deflate.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/deflate.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzclose.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzguts.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzio.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzlib.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzread.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/gzwrite.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/infback.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/inffast.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/inffast.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/inffixed.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/inflate.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/inflate.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/inftrees.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/inftrees.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/trees.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/trees.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/uncompr.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/zconf.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/zlib.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/zutil.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/libwebsockets/win32port/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/libwebsockets/win32port/zlib/zutil.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/.gitignore -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/ChangeLog -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/DartConfiguration.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/DartConfiguration.tcl -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/LICENSE -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/Makefile -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/README -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_encdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_encdec.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_hashing.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_mainpage.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_rng.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_ssltls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_ssltls.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_tcpip.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/doxygen/input/doc_x509.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/doxygen/polarssl.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/doxygen/polarssl.doxyfile -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/aes.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/arc4.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/asn1.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/asn1write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/asn1write.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/base64.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/bignum.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/blowfish.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/bn_mul.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/camellia.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/certs.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/cipher.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/cipher_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/cipher_wrap.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/config.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/ctr_drbg.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/debug.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/des.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/dhm.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/entropy.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/error.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/gcm.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/havege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/havege.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md2.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md4.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md5.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/md_wrap.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/net.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/openssl.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/padlock.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/pbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/pbkdf2.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/pem.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/pkcs11.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/rsa.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/sha1.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/sha2.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/sha4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/sha4.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/ssl.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/ssl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/ssl_cache.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/timing.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/version.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/x509.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/x509write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/x509write.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/include/polarssl/xtea.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libpolarssl* 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/Makefile -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/aes.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/arc4.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/asn1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/asn1parse.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/asn1write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/asn1write.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/base64.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/bignum.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/blowfish.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/camellia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/camellia.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/certs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/certs.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/cipher.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/cipher_wrap.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/ctr_drbg.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/debug.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/des.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/dhm.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/entropy.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/entropy_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/entropy_poll.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/error.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/gcm.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/havege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/havege.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/md.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/md2.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/md4.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/md5.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/md_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/md_wrap.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/net.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/padlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/padlock.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/pbkdf2.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/pem.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/pkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/pkcs11.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/rsa.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/sha1.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/sha2.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/sha4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/sha4.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/ssl_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/ssl_cache.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/ssl_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/ssl_cli.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/ssl_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/ssl_srv.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/ssl_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/ssl_tls.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/timing.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/version.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/x509parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/x509parse.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/x509write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/x509write.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/library/xtea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/library/xtea.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/.gitignore -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/Makefile -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/aes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/aes/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/aes/aescrypt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/aes/aescrypt2.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/aes/crypt_and_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/aes/crypt_and_hash.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/generic_sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/generic_sum.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/hello.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/md5sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/md5sum.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/sha1sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/sha1sum.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/sha2sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/hash/sha2sum.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/dh_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/dh_client.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/dh_genprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/dh_genprime.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/dh_prime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/dh_prime.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/dh_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/dh_server.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/key_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/key_app.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/key_app_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/key_app_writer.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/mpi_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/mpi_demo.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_decrypt.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_encrypt.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_genkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_genkey.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_priv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_priv.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_pub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_pub.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_sign.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_sign_pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_sign_pss.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_verify.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_verify_pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/pkey/rsa_verify_pss.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/random/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/random/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/random/gen_entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/random/gen_entropy.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/CA-HOWTO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/CA-HOWTO.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_client1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_client1.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_client2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_client2.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_fork_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_fork_server.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_mail_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_mail_client.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_server.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_server2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/ssl_server2.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/test-ca/cert_md2.crt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/test-ca/crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/test-ca/crl.pem -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/test-ca/crl_md2.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/test-ca/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/test-ca/index -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/test-ca/index.attr: -------------------------------------------------------------------------------- 1 | unique_subject = no 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/ssl/test-ca/serial: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/test/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/test/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/test/benchmark.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/test/o_p_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/test/o_p_test.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/test/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/test/selftest.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/test/ssl_cert_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/test/ssl_cert_test.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/test/ssl_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/test/ssl_test.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/util/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/util/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/util/strerror.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/wince_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/wince_main.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/x509/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/x509/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/x509/cert_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/x509/cert_app.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/x509/cert_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/x509/cert_req.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/programs/x509/crl_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/programs/x509/crl_app.c -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/scripts/bump_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/scripts/bump_version.sh -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/scripts/check_doxy_blocks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/scripts/check_doxy_blocks.pl -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/scripts/data_files/error.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/scripts/data_files/error.fmt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/scripts/generate_errors.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/scripts/generate_errors.pl -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/.gitignore: -------------------------------------------------------------------------------- 1 | test_suite* 2 | data_files/mpi_write 3 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/CMakeLists.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/Makefile -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/compat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/compat.sh -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/cert_md2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/cert_md2.crt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/cert_md4.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/cert_md4.crt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/cert_md5.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/cert_md5.crt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/cert_sha1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/cert_sha1.crt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl.pem -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl_md2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl_md2.pem -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl_md4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl_md4.pem -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl_md5.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl_md5.pem -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl_sha1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/crl_sha1.pem -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/hash_file_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/hash_file_1 -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/hash_file_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/hash_file_2 -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/hash_file_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/hash_file_3 -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/hash_file_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/keyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/keyfile -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/keyfile.3des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/keyfile.3des -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/keyfile.des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/keyfile.des -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/mpi_10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/mpi_10 -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/mpi_too_big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/mpi_too_big -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/server1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/server1.crt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/server1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/server1.key -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/server2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/server2.crt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/server2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/server2.key -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/test-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/test-ca.crt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/test-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/data_files/test-ca.key -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/fct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/fct.h -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/scripts/gen_ctr_drbg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/scripts/gen_ctr_drbg.pl -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/scripts/generate_code.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/scripts/generate_code.pl -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/tests/suites/helpers.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/tests/suites/helpers.function -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS2010/PolarSSL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS2010/PolarSSL.sln -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS2010/md5sum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS2010/md5sum.vcxproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS2010/sha1sum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS2010/sha1sum.vcxproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS2010/sha2sum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS2010/sha2sum.vcxproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/aescrypt2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/aescrypt2.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/benchmark.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/benchmark.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/dh_client.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/dh_client.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/dh_genprime.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/dh_genprime.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/dh_prime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/dh_prime.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/dh_server.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/dh_server.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/hello.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/hello.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/md5sum.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/md5sum.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/mpi_demo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/mpi_demo.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/polarssl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/polarssl.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/polarssl.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/polarssl.dsw -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/polarssl.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/polarssl.vcproj -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_genkey.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_genkey.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_priv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_priv.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_pub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_pub.txt -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_sign.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_sign.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_verify.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/rsa_verify.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/selftest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/selftest.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/sha1sum.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/sha1sum.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/sha2sum.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/sha2sum.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_cert_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_cert_test.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_client1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_client1.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_client2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_client2.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_server.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_server.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/polarssl-1.2.5/visualc/VS6/ssl_test.dsp -------------------------------------------------------------------------------- /WebSocketAPIPlugin/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/WebSocketAPIPlugin/resource.h -------------------------------------------------------------------------------- /installer/.gitignore: -------------------------------------------------------------------------------- 1 | !OBSRemoteManualInstall 2 | !*.dll -------------------------------------------------------------------------------- /installer/OBSRemoteManualInstall/32-bit/WebSocketAPIPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/installer/OBSRemoteManualInstall/32-bit/WebSocketAPIPlugin.dll -------------------------------------------------------------------------------- /installer/OBSRemoteManualInstall/64-bit/WebSocketAPIPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/installer/OBSRemoteManualInstall/64-bit/WebSocketAPIPlugin.dll -------------------------------------------------------------------------------- /installer/SimpleFC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/installer/SimpleFC.dll -------------------------------------------------------------------------------- /installer/gplv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/installer/gplv2.txt -------------------------------------------------------------------------------- /installer/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilhamil/OBSRemote/HEAD/installer/installer.nsi --------------------------------------------------------------------------------