├── .gitattributes ├── LICENSE ├── README.md ├── doc ├── ESP32-Radio-DLNA.jpg ├── ESP32-Radio-DLNA.mp4 ├── Hardware │ ├── Schematic ESP32+SD+W5500.jpg │ └── Wiring test set with ESP32 debug module.JPG ├── Logfiles │ ├── BrowseBigDirectories_WiFi_0-None_Twonky.log │ ├── BrowseBigDirectories_WiFi_3-Info_Serviio.log │ ├── BrowseRecursively_Ethernet_0-None_Kodi.log │ ├── BrowseRecursively_Ethernet_3-Info_Kodi.log │ ├── BrowseRecursively_Ethernet_3-Info_MinimServer.log │ ├── BrowseRecursively_Ethernet_5-Verbose_Plex.log │ ├── BrowseRecursively_Ethernet_5-Verbose_Subsonic.log │ ├── BrowseRecursively_WiFi_0-None_UMS.log │ ├── BrowseRecursively_WiFi_1-Error_Jellyfin.log │ ├── BrowseRecursively_WiFi_1-Error_Plex.log │ ├── BrowseRecursively_WiFi_2-Warning_Denon-Heos.log │ ├── BrowseRecursively_WiFi_2-Warning_Serviio.log │ ├── BrowseRecursively_WiFi_2-Warning_Subsonic.log │ ├── BrowseRecursively_WiFi_3-Info_UMS.log │ ├── BrowseRecursively_WiFi_4-Debug_UMS.log │ ├── BrowseRecursively_WiFi_5-Verbose_Denon-Heos.log │ ├── BrowseRecursively_WiFi_5-Verbose_MediaPlayer.log │ ├── BrowseRoot_Ethernet_0-None.log │ ├── BrowseRoot_Ethernet_3-Info_QNAP-DLNA.log │ ├── BrowseRoot_Ethernet_4-Debug.log │ ├── BrowseRoot_Ethernet_5-Verbose_Mezzmo.log │ ├── BrowseRoot_WiFi_2-Warning.log │ ├── BrowseRoot_WiFi_4-Debug.log │ ├── BrowseRoot_WiFi_5-Verbose.log │ ├── BrowseRoot_WiFi_Build-Messages_PlatformIO.log │ ├── DownloadFileExample1_Ethernet_0-None_Kodi.log │ ├── DownloadFileExample1_Ethernet_3-Info_Mezzmo.log │ ├── DownloadFileExample1_Ethernet_4-Debug_Kodi.log │ ├── DownloadFileExample1_Ethernet_5-Verbose_MinimServer.log │ ├── DownloadFileExample1_Ethernet_5-Verbose_Subsonic.log │ ├── DownloadFileExample1_Ethernet_Error-FileTooBig.log │ ├── DownloadFileExample1_WiFi_5_Verbose-Plex.log │ ├── DownloadFileExample1_WiFi_5_Verbose-Serviio.log │ ├── DownloadFileExample2_WiFi_0-None_MediaPlayer.log │ ├── DownloadFileExample2_WiFi_0-None_Serviio.log │ ├── DownloadFileExample2_WiFi_1-Error_Jellyfin.log │ ├── DownloadFileExample2_WiFi_2-Warning_Denon-Heos.log │ ├── DownloadFileExample2_WiFi_2-Warning_Subsonic.log │ ├── DownloadFileExample2_WiFi_3-Info_UMS.log │ ├── ESP32-Radio-DLNA_3-Info.log │ ├── GetServerCapabilities_WiFi_2-Warning.log │ ├── GetServerCapabilities_WiFi_4-Debug.log │ ├── ScanForMediaServers_Ethernet_0-None.log │ ├── ScanForMediaServers_Ethernet_3-Info_MinimServer.log │ ├── ScanForMediaServers_Ethernet_3-Info_QNAP-DLNA.log │ ├── ScanForMediaServers_Ethernet_4-Debug.log │ ├── ScanForMediaServers_Ethernet_5-Verbose_Mezzmo.log │ ├── ScanForMediaServers_WiFi_1-Error.log │ ├── ScanForMediaServers_WiFi_5-Verbose.log │ ├── ScanForMediaServers_WiFi_5-Verbose_DLinkNAS.log │ ├── SearchServerExample1_Ethernet_4-Debug_Mezzmo.log │ ├── SearchServerExample2_Ethernet_3-Info_MinimServer_genre+title.log │ ├── SearchServerExample2_WiFi_3-Info_Twonky_genre+title.log │ ├── SearchServerExample3_Ethernet_2-Warning_Twonky_album+title.log │ ├── SearchServerExample3_WiFi_4-Debug_Twonky_album+title.log │ ├── UsingMutexLocks_Ethernet_3-Info.log │ ├── WakeUpMediaServer_Ethernet_0-None.log │ └── WakeUpMediaServer_Wifi_3-Info.log ├── Using_VLC_to_find_file_download_parameter.JPG ├── Using_VLC_to_find_server_control_parameter_1.JPG └── Using_VLC_to_find_server_control_parameter_2.JPG ├── examples ├── BrowseBigDirectories_WiFi │ └── BrowseBigDirectories_WiFi.ino ├── BrowseRecursively_Ethernet │ └── BrowseRecursively_Ethernet.ino ├── BrowseRecursively_WiFi │ └── BrowseRecursively_WiFi.ino ├── BrowseRoot_Ethernet │ └── BrowseRoot_Ethernet.ino ├── BrowseRoot_WiFi │ └── BrowseRoot_WiFi.ino ├── DownloadFileExample1_Ethernet │ └── DownloadFileExample1_Ethernet.ino ├── DownloadFileExample1_WiFi │ └── DownloadFileExample1_WiFi.ino ├── DownloadFileExample2_Ethernet │ └── DownloadFileExample2_Ethernet.ino ├── DownloadFileExample2_WiFi │ └── DownloadFileExample2_WiFi.ino ├── GetServerCapabilities_WiFi │ └── GetServerCapabilities_WiFi.ino ├── ScanForMediaServers_Ethernet │ └── ScanForMediaServers_Ethernet.ino ├── ScanForMediaServers_WiFi │ └── ScanForMediaServers_WiFi.ino ├── SearchServerExample1_Ethernet │ └── SearchServerExample1_Ethernet.ino ├── SearchServerExample1_WiFi │ └── SearchServerExample1_WiFi.ino ├── SearchServerExample2_Ethernet │ └── SearchServerExample2_Ethernet.ino ├── SearchServerExample2_WiFi │ └── SearchServerExample2_WiFi.ino ├── SearchServerExample3_Ethernet │ └── SearchServerExample3_Ethernet.ino ├── SearchServerExample3_WiFi │ └── SearchServerExample3_WiFi.ino ├── UsingMutexLocks_Ethernet │ └── UsingMutexLocks_Ethernet.ino ├── WakeUpMediaServer_Ethernet │ └── WakeUpMediaServer_Ethernet.ino └── WakeUpMediaServer_WiFi │ └── WakeUpMediaServer_WiFi.ino ├── keywords.txt ├── library.json ├── library.properties ├── platformio.ini └── src ├── MiniXPath.cpp ├── MiniXPath.h ├── SoapESP32.cpp └── SoapESP32.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/README.md -------------------------------------------------------------------------------- /doc/ESP32-Radio-DLNA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/ESP32-Radio-DLNA.jpg -------------------------------------------------------------------------------- /doc/ESP32-Radio-DLNA.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/ESP32-Radio-DLNA.mp4 -------------------------------------------------------------------------------- /doc/Hardware/Schematic ESP32+SD+W5500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Hardware/Schematic ESP32+SD+W5500.jpg -------------------------------------------------------------------------------- /doc/Hardware/Wiring test set with ESP32 debug module.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Hardware/Wiring test set with ESP32 debug module.JPG -------------------------------------------------------------------------------- /doc/Logfiles/BrowseBigDirectories_WiFi_0-None_Twonky.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseBigDirectories_WiFi_0-None_Twonky.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseBigDirectories_WiFi_3-Info_Serviio.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseBigDirectories_WiFi_3-Info_Serviio.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_Ethernet_0-None_Kodi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_Ethernet_0-None_Kodi.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_Ethernet_3-Info_Kodi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_Ethernet_3-Info_Kodi.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_Ethernet_3-Info_MinimServer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_Ethernet_3-Info_MinimServer.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_Ethernet_5-Verbose_Plex.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_Ethernet_5-Verbose_Plex.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_Ethernet_5-Verbose_Subsonic.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_Ethernet_5-Verbose_Subsonic.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_0-None_UMS.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_0-None_UMS.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_1-Error_Jellyfin.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_1-Error_Jellyfin.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_1-Error_Plex.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_1-Error_Plex.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_2-Warning_Denon-Heos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_2-Warning_Denon-Heos.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_2-Warning_Serviio.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_2-Warning_Serviio.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_2-Warning_Subsonic.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_2-Warning_Subsonic.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_3-Info_UMS.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_3-Info_UMS.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_4-Debug_UMS.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_4-Debug_UMS.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_5-Verbose_Denon-Heos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_5-Verbose_Denon-Heos.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRecursively_WiFi_5-Verbose_MediaPlayer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRecursively_WiFi_5-Verbose_MediaPlayer.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRoot_Ethernet_0-None.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRoot_Ethernet_0-None.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRoot_Ethernet_3-Info_QNAP-DLNA.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRoot_Ethernet_3-Info_QNAP-DLNA.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRoot_Ethernet_4-Debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRoot_Ethernet_4-Debug.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRoot_Ethernet_5-Verbose_Mezzmo.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRoot_Ethernet_5-Verbose_Mezzmo.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRoot_WiFi_2-Warning.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRoot_WiFi_2-Warning.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRoot_WiFi_4-Debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRoot_WiFi_4-Debug.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRoot_WiFi_5-Verbose.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRoot_WiFi_5-Verbose.log -------------------------------------------------------------------------------- /doc/Logfiles/BrowseRoot_WiFi_Build-Messages_PlatformIO.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/BrowseRoot_WiFi_Build-Messages_PlatformIO.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample1_Ethernet_0-None_Kodi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample1_Ethernet_0-None_Kodi.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample1_Ethernet_3-Info_Mezzmo.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample1_Ethernet_3-Info_Mezzmo.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample1_Ethernet_4-Debug_Kodi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample1_Ethernet_4-Debug_Kodi.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample1_Ethernet_5-Verbose_MinimServer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample1_Ethernet_5-Verbose_MinimServer.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample1_Ethernet_5-Verbose_Subsonic.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample1_Ethernet_5-Verbose_Subsonic.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample1_Ethernet_Error-FileTooBig.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample1_Ethernet_Error-FileTooBig.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample1_WiFi_5_Verbose-Plex.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample1_WiFi_5_Verbose-Plex.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample1_WiFi_5_Verbose-Serviio.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample1_WiFi_5_Verbose-Serviio.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample2_WiFi_0-None_MediaPlayer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample2_WiFi_0-None_MediaPlayer.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample2_WiFi_0-None_Serviio.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample2_WiFi_0-None_Serviio.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample2_WiFi_1-Error_Jellyfin.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample2_WiFi_1-Error_Jellyfin.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample2_WiFi_2-Warning_Denon-Heos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample2_WiFi_2-Warning_Denon-Heos.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample2_WiFi_2-Warning_Subsonic.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample2_WiFi_2-Warning_Subsonic.log -------------------------------------------------------------------------------- /doc/Logfiles/DownloadFileExample2_WiFi_3-Info_UMS.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/DownloadFileExample2_WiFi_3-Info_UMS.log -------------------------------------------------------------------------------- /doc/Logfiles/ESP32-Radio-DLNA_3-Info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/ESP32-Radio-DLNA_3-Info.log -------------------------------------------------------------------------------- /doc/Logfiles/GetServerCapabilities_WiFi_2-Warning.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/GetServerCapabilities_WiFi_2-Warning.log -------------------------------------------------------------------------------- /doc/Logfiles/GetServerCapabilities_WiFi_4-Debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/GetServerCapabilities_WiFi_4-Debug.log -------------------------------------------------------------------------------- /doc/Logfiles/ScanForMediaServers_Ethernet_0-None.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/ScanForMediaServers_Ethernet_0-None.log -------------------------------------------------------------------------------- /doc/Logfiles/ScanForMediaServers_Ethernet_3-Info_MinimServer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/ScanForMediaServers_Ethernet_3-Info_MinimServer.log -------------------------------------------------------------------------------- /doc/Logfiles/ScanForMediaServers_Ethernet_3-Info_QNAP-DLNA.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/ScanForMediaServers_Ethernet_3-Info_QNAP-DLNA.log -------------------------------------------------------------------------------- /doc/Logfiles/ScanForMediaServers_Ethernet_4-Debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/ScanForMediaServers_Ethernet_4-Debug.log -------------------------------------------------------------------------------- /doc/Logfiles/ScanForMediaServers_Ethernet_5-Verbose_Mezzmo.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/ScanForMediaServers_Ethernet_5-Verbose_Mezzmo.log -------------------------------------------------------------------------------- /doc/Logfiles/ScanForMediaServers_WiFi_1-Error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/ScanForMediaServers_WiFi_1-Error.log -------------------------------------------------------------------------------- /doc/Logfiles/ScanForMediaServers_WiFi_5-Verbose.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/ScanForMediaServers_WiFi_5-Verbose.log -------------------------------------------------------------------------------- /doc/Logfiles/ScanForMediaServers_WiFi_5-Verbose_DLinkNAS.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/ScanForMediaServers_WiFi_5-Verbose_DLinkNAS.log -------------------------------------------------------------------------------- /doc/Logfiles/SearchServerExample1_Ethernet_4-Debug_Mezzmo.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/SearchServerExample1_Ethernet_4-Debug_Mezzmo.log -------------------------------------------------------------------------------- /doc/Logfiles/SearchServerExample2_Ethernet_3-Info_MinimServer_genre+title.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/SearchServerExample2_Ethernet_3-Info_MinimServer_genre+title.log -------------------------------------------------------------------------------- /doc/Logfiles/SearchServerExample2_WiFi_3-Info_Twonky_genre+title.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/SearchServerExample2_WiFi_3-Info_Twonky_genre+title.log -------------------------------------------------------------------------------- /doc/Logfiles/SearchServerExample3_Ethernet_2-Warning_Twonky_album+title.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/SearchServerExample3_Ethernet_2-Warning_Twonky_album+title.log -------------------------------------------------------------------------------- /doc/Logfiles/SearchServerExample3_WiFi_4-Debug_Twonky_album+title.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/SearchServerExample3_WiFi_4-Debug_Twonky_album+title.log -------------------------------------------------------------------------------- /doc/Logfiles/UsingMutexLocks_Ethernet_3-Info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/UsingMutexLocks_Ethernet_3-Info.log -------------------------------------------------------------------------------- /doc/Logfiles/WakeUpMediaServer_Ethernet_0-None.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/WakeUpMediaServer_Ethernet_0-None.log -------------------------------------------------------------------------------- /doc/Logfiles/WakeUpMediaServer_Wifi_3-Info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Logfiles/WakeUpMediaServer_Wifi_3-Info.log -------------------------------------------------------------------------------- /doc/Using_VLC_to_find_file_download_parameter.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Using_VLC_to_find_file_download_parameter.JPG -------------------------------------------------------------------------------- /doc/Using_VLC_to_find_server_control_parameter_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Using_VLC_to_find_server_control_parameter_1.JPG -------------------------------------------------------------------------------- /doc/Using_VLC_to_find_server_control_parameter_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/doc/Using_VLC_to_find_server_control_parameter_2.JPG -------------------------------------------------------------------------------- /examples/BrowseBigDirectories_WiFi/BrowseBigDirectories_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/BrowseBigDirectories_WiFi/BrowseBigDirectories_WiFi.ino -------------------------------------------------------------------------------- /examples/BrowseRecursively_Ethernet/BrowseRecursively_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/BrowseRecursively_Ethernet/BrowseRecursively_Ethernet.ino -------------------------------------------------------------------------------- /examples/BrowseRecursively_WiFi/BrowseRecursively_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/BrowseRecursively_WiFi/BrowseRecursively_WiFi.ino -------------------------------------------------------------------------------- /examples/BrowseRoot_Ethernet/BrowseRoot_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/BrowseRoot_Ethernet/BrowseRoot_Ethernet.ino -------------------------------------------------------------------------------- /examples/BrowseRoot_WiFi/BrowseRoot_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/BrowseRoot_WiFi/BrowseRoot_WiFi.ino -------------------------------------------------------------------------------- /examples/DownloadFileExample1_Ethernet/DownloadFileExample1_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/DownloadFileExample1_Ethernet/DownloadFileExample1_Ethernet.ino -------------------------------------------------------------------------------- /examples/DownloadFileExample1_WiFi/DownloadFileExample1_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/DownloadFileExample1_WiFi/DownloadFileExample1_WiFi.ino -------------------------------------------------------------------------------- /examples/DownloadFileExample2_Ethernet/DownloadFileExample2_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/DownloadFileExample2_Ethernet/DownloadFileExample2_Ethernet.ino -------------------------------------------------------------------------------- /examples/DownloadFileExample2_WiFi/DownloadFileExample2_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/DownloadFileExample2_WiFi/DownloadFileExample2_WiFi.ino -------------------------------------------------------------------------------- /examples/GetServerCapabilities_WiFi/GetServerCapabilities_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/GetServerCapabilities_WiFi/GetServerCapabilities_WiFi.ino -------------------------------------------------------------------------------- /examples/ScanForMediaServers_Ethernet/ScanForMediaServers_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/ScanForMediaServers_Ethernet/ScanForMediaServers_Ethernet.ino -------------------------------------------------------------------------------- /examples/ScanForMediaServers_WiFi/ScanForMediaServers_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/ScanForMediaServers_WiFi/ScanForMediaServers_WiFi.ino -------------------------------------------------------------------------------- /examples/SearchServerExample1_Ethernet/SearchServerExample1_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/SearchServerExample1_Ethernet/SearchServerExample1_Ethernet.ino -------------------------------------------------------------------------------- /examples/SearchServerExample1_WiFi/SearchServerExample1_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/SearchServerExample1_WiFi/SearchServerExample1_WiFi.ino -------------------------------------------------------------------------------- /examples/SearchServerExample2_Ethernet/SearchServerExample2_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/SearchServerExample2_Ethernet/SearchServerExample2_Ethernet.ino -------------------------------------------------------------------------------- /examples/SearchServerExample2_WiFi/SearchServerExample2_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/SearchServerExample2_WiFi/SearchServerExample2_WiFi.ino -------------------------------------------------------------------------------- /examples/SearchServerExample3_Ethernet/SearchServerExample3_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/SearchServerExample3_Ethernet/SearchServerExample3_Ethernet.ino -------------------------------------------------------------------------------- /examples/SearchServerExample3_WiFi/SearchServerExample3_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/SearchServerExample3_WiFi/SearchServerExample3_WiFi.ino -------------------------------------------------------------------------------- /examples/UsingMutexLocks_Ethernet/UsingMutexLocks_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/UsingMutexLocks_Ethernet/UsingMutexLocks_Ethernet.ino -------------------------------------------------------------------------------- /examples/WakeUpMediaServer_Ethernet/WakeUpMediaServer_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/WakeUpMediaServer_Ethernet/WakeUpMediaServer_Ethernet.ino -------------------------------------------------------------------------------- /examples/WakeUpMediaServer_WiFi/WakeUpMediaServer_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/examples/WakeUpMediaServer_WiFi/WakeUpMediaServer_WiFi.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/library.properties -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/MiniXPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/src/MiniXPath.cpp -------------------------------------------------------------------------------- /src/MiniXPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/src/MiniXPath.h -------------------------------------------------------------------------------- /src/SoapESP32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/src/SoapESP32.cpp -------------------------------------------------------------------------------- /src/SoapESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/SoapESP32/HEAD/src/SoapESP32.h --------------------------------------------------------------------------------