├── .gitmodules ├── AACEncoder ├── AACEncoder.entitlements ├── AACEncoder.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── AACEncoder.xcscheme └── AACEncoder │ ├── AACEncoder.cpp │ ├── AACEncoder.hpp │ └── main.cpp ├── APPNOTES.md ├── AudioMonitor ├── AudioMonitor.entitlements ├── AudioMonitor.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── AudioMonitor2.xcscheme └── AudioMonitor │ ├── AudioMonitor.h │ ├── AudioMonitor.mm │ ├── AudioMonitor2.cpp │ ├── AudioMonitor2.hpp │ ├── TPCircularBuffer-master │ ├── README.markdown │ ├── TPCircularBuffer+AudioBufferList.c │ ├── TPCircularBuffer+AudioBufferList.h │ ├── TPCircularBuffer.c │ ├── TPCircularBuffer.h │ └── TPCircularBuffer.podspec │ ├── main.cpp │ └── main.mm ├── BUILD.md ├── CREDITS.md ├── Documents ├── Images │ ├── 1@2x,3.jpg │ ├── 620x620,1.png │ ├── antenna-small.png │ ├── antenna.jpg │ ├── antenna.png │ ├── antenna.psd │ ├── antique_radio.png │ ├── antique_radio.psd │ ├── iphone-screen-1.tiff │ ├── iphone-screen-2.png │ ├── iphone-screen-2.tiff │ ├── mac-mini-small.png │ ├── macos-screen-1.tiff │ ├── macos-screen-2.png │ ├── macos-screen-2.tiff │ ├── psp-mini-hero-iphone-screen_2x.png │ ├── refurb-mac-mini-2014-gallery.jpeg │ ├── rtl-sdr-2-small.png │ ├── rtl-sdr-2.png │ ├── rtl-sdr-kit.jpeg │ ├── rtl-sdr.jpeg │ ├── rtl-sdr.png │ ├── screen_caps │ │ ├── LocalRadio1.png │ │ ├── LocalRadio2.png │ │ ├── LocalRadio3.png │ │ ├── LocalRadio4.png │ │ ├── LocalRadio5.png │ │ ├── LocalRadio6.png │ │ ├── MacSafari.png │ │ ├── iPhone1.png │ │ ├── iPhone2.png │ │ ├── iPhone3.png │ │ ├── iPhone4.png │ │ ├── iPhone5.png │ │ ├── iPhone6.png │ │ ├── iPhone7.png │ │ ├── iPhone8.png │ │ ├── scanning_status.gif │ │ └── tiff │ │ │ ├── MacSafari.tiff │ │ │ ├── iPhone1.tiff │ │ │ ├── iPhone2.tiff │ │ │ ├── iPhone3.tiff │ │ │ ├── iPhone4.tiff │ │ │ ├── iPhone5.tiff │ │ │ ├── iPhone6.tiff │ │ │ ├── iPhone7.tiff │ │ │ └── iPhone8.tiff │ └── touch_screen_digitizer_for_celkon_a125_white_by_maxbhi.com_92064.jpg ├── LocalRadio-animation.svg ├── LocalRadio-poster copy.svg └── LocalRadio-poster.svg ├── HARDWARE.md ├── IcecastSource ├── IcecastSource.entitlements └── IcecastSource │ ├── CocoaLumberjack-master │ └── Demos │ │ └── CoreDataLogger │ │ └── CoreDataLogger │ │ └── Log.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── CocoaBotLog.xcdatamodel │ │ ├── elements │ │ └── layout │ ├── main.m │ └── spec.md ├── IcecastSourceClient ├── IcecastSourceClient.entitlements └── IcecastSourceClient │ ├── LocalRadio libshout note.txt │ └── main.c ├── LICENSE ├── LocalRadio copy-Info.plist ├── LocalRadio copy2-Info.plist ├── LocalRadio.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── LocalRadio.xcscheme ├── LocalRadio ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ └── Contents.json ├── Automator Scripts │ └── LocalRadio Clean-Up.workflow │ │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Preview.png │ │ └── document.wflow ├── CocoaAsyncSocket-7.6.3 │ ├── .gitignore │ ├── .travis.yml │ ├── CocoaAsyncSocket.podspec │ ├── CocoaAsyncSocket.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Examples │ │ ├── GCD │ │ │ ├── BonjourClient │ │ │ │ ├── BonjourClient-Info.plist │ │ │ │ ├── BonjourClient.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── BonjourClientAppDelegate.h │ │ │ │ ├── BonjourClientAppDelegate.m │ │ │ │ ├── BonjourClient_Prefix.pch │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ ├── BonjourServer │ │ │ │ ├── BonjourServer-Info.plist │ │ │ │ ├── BonjourServer.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── BonjourServerAppDelegate.h │ │ │ │ ├── BonjourServerAppDelegate.m │ │ │ │ ├── BonjourServer_Prefix.pch │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ ├── ConnectTest │ │ │ │ ├── Desktop │ │ │ │ │ ├── ConnectTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── ConnectTest │ │ │ │ │ │ ├── ConnectTest-Info.plist │ │ │ │ │ │ ├── ConnectTest-Prefix.pch │ │ │ │ │ │ ├── ConnectTestAppDelegate.h │ │ │ │ │ │ ├── ConnectTestAppDelegate.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ └── main.m │ │ │ │ ├── Mobile │ │ │ │ │ ├── ConnectTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── ConnectTest │ │ │ │ │ │ ├── ConnectTest-Info.plist │ │ │ │ │ │ ├── ConnectTest-Prefix.pch │ │ │ │ │ │ ├── ConnectTestAppDelegate.h │ │ │ │ │ │ ├── ConnectTestAppDelegate.m │ │ │ │ │ │ ├── ConnectTestViewController.h │ │ │ │ │ │ ├── ConnectTestViewController.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ ├── ConnectTestViewController.xib │ │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ │ └── MainWindow.xib │ │ │ │ │ │ └── main.m │ │ │ │ │ └── Default-568h@2x.png │ │ │ │ └── ReadMe.txt │ │ │ ├── DomainTest │ │ │ │ ├── DomainTest.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── DomainTest │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── DomainClient.h │ │ │ │ │ ├── DomainClient.m │ │ │ │ │ ├── DomainClient.xib │ │ │ │ │ ├── DomainServer.h │ │ │ │ │ ├── DomainServer.m │ │ │ │ │ ├── DomainTest-Info.plist │ │ │ │ │ ├── DomainTest-Prefix.pch │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ └── main.m │ │ │ ├── EchoServer │ │ │ │ ├── EchoServer-Info.plist │ │ │ │ ├── EchoServer.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── EchoServerAppDelegate.h │ │ │ │ ├── EchoServerAppDelegate.m │ │ │ │ ├── EchoServer_Prefix.pch │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ ├── SimpleHTTPClient │ │ │ │ ├── Desktop │ │ │ │ │ ├── SimpleHTTPClient.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── SimpleHTTPClient │ │ │ │ │ │ ├── SimpleHTTPClient-Info.plist │ │ │ │ │ │ ├── SimpleHTTPClient-Prefix.pch │ │ │ │ │ │ ├── SimpleHTTPClientAppDelegate.h │ │ │ │ │ │ ├── SimpleHTTPClientAppDelegate.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ └── main.m │ │ │ │ ├── Mobile │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── SimpleHTTPClient.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── SimpleHTTPClient │ │ │ │ │ │ ├── SimpleHTTPClient-Info.plist │ │ │ │ │ │ ├── SimpleHTTPClient-Prefix.pch │ │ │ │ │ │ ├── SimpleHTTPClientAppDelegate.h │ │ │ │ │ │ ├── SimpleHTTPClientAppDelegate.m │ │ │ │ │ │ ├── SimpleHTTPClientViewController.h │ │ │ │ │ │ ├── SimpleHTTPClientViewController.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ ├── MainWindow.xib │ │ │ │ │ │ └── SimpleHTTPClientViewController.xib │ │ │ │ │ │ └── main.m │ │ │ │ └── ReadMe.txt │ │ │ ├── TestPreBuffer │ │ │ │ ├── Desktop │ │ │ │ │ ├── TestPreBuffer.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── TestPreBuffer │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── TestPreBuffer-Info.plist │ │ │ │ │ │ ├── TestPreBuffer-Prefix.pch │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ └── main.m │ │ │ │ ├── Mobile │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── TestPreBuffer.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── TestPreBuffer │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── TestPreBuffer-Info.plist │ │ │ │ │ │ ├── TestPreBuffer-Prefix.pch │ │ │ │ │ │ ├── ViewController.h │ │ │ │ │ │ ├── ViewController.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ ├── ViewController_iPad.xib │ │ │ │ │ │ └── ViewController_iPhone.xib │ │ │ │ │ │ └── main.m │ │ │ │ └── Shared │ │ │ │ │ ├── TestPreBuffer.h │ │ │ │ │ └── TestPreBuffer.m │ │ │ ├── UdpEchoClient │ │ │ │ ├── Desktop │ │ │ │ │ ├── UdpEchoClient.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── UdpEchoClient │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── UdpEchoClient-Info.plist │ │ │ │ │ │ ├── UdpEchoClient-Prefix.pch │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ └── main.m │ │ │ │ └── Mobile │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── UdpEchoClient.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── UdpEchoClient │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── UdpEchoClient-Info.plist │ │ │ │ │ ├── UdpEchoClient-Prefix.pch │ │ │ │ │ ├── ViewController.h │ │ │ │ │ ├── ViewController.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── ViewController.xib │ │ │ │ │ └── main.m │ │ │ └── UdpEchoServer │ │ │ │ ├── Desktop │ │ │ │ ├── UdpEchoServer.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── UdpEchoServer │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── UdpEchoServer-Info.plist │ │ │ │ │ ├── UdpEchoServer-Prefix.pch │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ └── main.m │ │ │ │ └── Mobile │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── UdpEchoServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── UdpEchoServer │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── UdpEchoServer-Info.plist │ │ │ │ ├── UdpEchoServer-Prefix.pch │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── ViewController.xib │ │ │ │ └── main.m │ │ └── RunLoop │ │ │ ├── EchoServer │ │ │ ├── AppController.h │ │ │ ├── AppController.m │ │ │ ├── EchoServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── EchoServer_Prefix.pch │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── Info.plist │ │ │ ├── Instructions.txt │ │ │ └── main.m │ │ │ ├── InterfaceTest │ │ │ ├── Classes │ │ │ │ ├── InterfaceTestAppDelegate.h │ │ │ │ ├── InterfaceTestAppDelegate.m │ │ │ │ ├── InterfaceTestViewController.h │ │ │ │ └── InterfaceTestViewController.m │ │ │ ├── Default-568h@2x.png │ │ │ ├── InterfaceTest-Info.plist │ │ │ ├── InterfaceTest.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── InterfaceTestViewController.xib │ │ │ ├── InterfaceTest_Prefix.pch │ │ │ ├── MainWindow.xib │ │ │ ├── Readme.txt │ │ │ └── main.m │ │ │ ├── UdpEchoClient │ │ │ ├── UdpEchoClient.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ └── UdpEchoClient │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── UdpEchoClient-Info.plist │ │ │ │ ├── UdpEchoClient-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ └── UdpEchoServer │ │ │ ├── UdpEchoServer.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── UdpEchoServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── UdpEchoServer-Info.plist │ │ │ ├── UdpEchoServer-Prefix.pch │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ ├── LICENSE.txt │ ├── README.markdown │ ├── Source │ │ ├── CocoaAsyncSocket.h │ │ ├── GCD │ │ │ ├── Documentation.html │ │ │ ├── GCDAsyncSocket.h │ │ │ ├── GCDAsyncSocket.m │ │ │ ├── GCDAsyncUdpSocket.h │ │ │ └── GCDAsyncUdpSocket.m │ │ └── Info.plist │ └── Tests │ │ ├── Framework │ │ └── CocoaAsyncSocketTests.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── Mac │ │ ├── CocoaAsyncSocket.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── CocoaAsyncSocket.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── GCDAsyncSocketUNTests.m │ │ ├── Info.plist │ │ ├── Podfile │ │ └── Podfile.lock │ │ ├── Shared │ │ ├── GCDAsyncSocketConnectionTests.m │ │ ├── GCDAsyncSocketReadTests.swift │ │ ├── GCDAsyncUdpSocketConnectionTests.m │ │ ├── Info.plist │ │ ├── SecureSocketServer.p12 │ │ ├── SwiftTests.swift │ │ ├── TestServer.swift │ │ └── TestSocket.swift │ │ ├── iOS │ │ ├── CocoaAsyncSocket.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── CocoaAsyncSocket.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Info.plist │ │ ├── Podfile │ │ └── Podfile.lock │ │ └── test-all.sh ├── CocoaHTTPServer-master-3 │ ├── .gitignore │ ├── .hgignore │ ├── .travis.yml │ ├── CocoaHTTPServer.podspec.json │ ├── Core │ │ ├── Categories │ │ │ ├── DDData.h │ │ │ ├── DDData.m │ │ │ ├── DDNumber.h │ │ │ ├── DDNumber.m │ │ │ ├── DDRange.h │ │ │ └── DDRange.m │ │ ├── HTTPAuthenticationRequest.h │ │ ├── HTTPAuthenticationRequest.m │ │ ├── HTTPConnection.h │ │ ├── HTTPConnection.m │ │ ├── HTTPLogging.h │ │ ├── HTTPMessage.h │ │ ├── HTTPMessage.m │ │ ├── HTTPResponse.h │ │ ├── HTTPServer.h │ │ ├── HTTPServer.m │ │ ├── Mime │ │ │ ├── MultipartFormDataParser.h │ │ │ ├── MultipartFormDataParser.m │ │ │ ├── MultipartMessageHeader.h │ │ │ ├── MultipartMessageHeader.m │ │ │ ├── MultipartMessageHeaderField.h │ │ │ └── MultipartMessageHeaderField.m │ │ ├── Responses │ │ │ ├── HTTPAsyncFileResponse.h │ │ │ ├── HTTPAsyncFileResponse.m │ │ │ ├── HTTPDataResponse.h │ │ │ ├── HTTPDataResponse.m │ │ │ ├── HTTPDynamicFileResponse.h │ │ │ ├── HTTPDynamicFileResponse.m │ │ │ ├── HTTPErrorResponse.h │ │ │ ├── HTTPErrorResponse.m │ │ │ ├── HTTPFileResponse.h │ │ │ ├── HTTPFileResponse.m │ │ │ ├── HTTPRedirectResponse.h │ │ │ └── HTTPRedirectResponse.m │ │ ├── WebSocket.h │ │ └── WebSocket.m │ ├── Extensions │ │ └── WebDAV │ │ │ ├── DAVConnection.h │ │ │ ├── DAVConnection.m │ │ │ ├── DAVResponse.h │ │ │ ├── DAVResponse.m │ │ │ ├── DELETEResponse.h │ │ │ ├── DELETEResponse.m │ │ │ ├── PUTResponse.h │ │ │ └── PUTResponse.m │ ├── LICENSE.txt │ ├── README.markdown │ ├── Samples │ │ ├── DynamicServer │ │ │ ├── DynamicServer-Info.plist │ │ │ ├── DynamicServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── DynamicServer.xcscheme │ │ │ ├── DynamicServerAppDelegate.h │ │ │ ├── DynamicServerAppDelegate.m │ │ │ ├── DynamicServer_Prefix.pch │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── HTTPResponseTest.h │ │ │ ├── HTTPResponseTest.m │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── README.markdown │ │ │ ├── Web │ │ │ │ └── index.html │ │ │ └── main.m │ │ ├── PasswdHTTPServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── PasswdHTTPServer.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── PasswdHTTPServer.xcscheme │ │ │ ├── PasswdHTTPServer_Prefix.pch │ │ │ ├── README.markdown │ │ │ └── main.m │ │ ├── PostHTTPServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── PostHTTPServer.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── PostHTTPServer.xcscheme │ │ │ ├── PostHTTPServer_Prefix.pch │ │ │ ├── README.markdown │ │ │ ├── Web │ │ │ │ └── index.html │ │ │ └── main.m │ │ ├── README.markdown │ │ ├── SecureHTTPServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── DDKeychain.h │ │ │ ├── DDKeychain.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── README.markdown │ │ │ ├── SecureHTTPServer.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SecureHTTPServer.xcscheme │ │ │ ├── SecureHTTPServer_Prefix.pch │ │ │ └── main.m │ │ ├── SecureWebSocketServer │ │ │ ├── README.markdown │ │ │ ├── SecureWebSocketServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SecureWebSocketServer.xcscheme │ │ │ └── SecureWebSocketServer │ │ │ │ ├── DDKeychain.h │ │ │ │ ├── DDKeychain.m │ │ │ │ ├── MyHTTPConnection.h │ │ │ │ ├── MyHTTPConnection.m │ │ │ │ ├── MyWebSocket.h │ │ │ │ ├── MyWebSocket.m │ │ │ │ ├── SecureWebSocketServer-Info.plist │ │ │ │ ├── SecureWebSocketServer-Prefix.pch │ │ │ │ ├── SecureWebSocketServerAppDelegate.h │ │ │ │ ├── SecureWebSocketServerAppDelegate.m │ │ │ │ ├── Web │ │ │ │ ├── WebSocketTest.js │ │ │ │ ├── WebSocketTest2.js │ │ │ │ └── index.html │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ ├── SimpleFileUploadServer │ │ │ ├── README.markdown │ │ │ ├── SimpleFileUploadServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SimpleFileUploadServer.xcscheme │ │ │ └── SimpleFileUploadServer │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── MyHTTPConnection.h │ │ │ │ ├── MyHTTPConnection.m │ │ │ │ ├── SimpleFileUploadServer-Info.plist │ │ │ │ ├── SimpleFileUploadServer-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ ├── main.m │ │ │ │ └── web │ │ │ │ ├── index.html │ │ │ │ └── upload.html │ │ ├── SimpleHTTPServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── Info.plist │ │ │ ├── README.markdown │ │ │ ├── SimpleHTTPServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SimpleHTTPServer.xcscheme │ │ │ ├── SimpleHTTPServer_Prefix.pch │ │ │ └── main.m │ │ ├── SimpleWebSocketServer │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── MyWebSocket.h │ │ │ ├── MyWebSocket.m │ │ │ ├── README.markdown │ │ │ ├── SimpleWebSocketServer-Info.plist │ │ │ ├── SimpleWebSocketServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SimpleWebSocketServer.xcscheme │ │ │ ├── SimpleWebSocketServerAppDelegate.h │ │ │ ├── SimpleWebSocketServerAppDelegate.m │ │ │ ├── SimpleWebSocketServer_Prefix.pch │ │ │ ├── Web │ │ │ │ ├── WebSocketTest.js │ │ │ │ ├── WebSocketTest2.js │ │ │ │ └── index.html │ │ │ └── main.m │ │ ├── WebDAVServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── English.lproj │ │ │ │ └── MainMenu.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── Info.plist │ │ │ ├── README.markdown │ │ │ ├── WebDAVServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── WebDAVServer.xcscheme │ │ │ ├── WebDAVServer_Prefix.pch │ │ │ └── main.m │ │ ├── Xcode-Configurations │ │ │ ├── Base.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── ReadMe.txt │ │ │ └── Release.xcconfig │ │ └── iPhoneHTTPServer │ │ │ ├── Classes │ │ │ ├── iPhoneHTTPServerAppDelegate.h │ │ │ ├── iPhoneHTTPServerAppDelegate.m │ │ │ ├── iPhoneHTTPServerViewController.h │ │ │ └── iPhoneHTTPServerViewController.m │ │ │ ├── Default-568h@2x.png │ │ │ ├── MainWindow.xib │ │ │ ├── README.markdown │ │ │ ├── Web │ │ │ └── index.html │ │ │ ├── iPhoneHTTPServer-Info.plist │ │ │ ├── iPhoneHTTPServer.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── iPhoneHTTPServer.xcscheme │ │ │ ├── iPhoneHTTPServerViewController.xib │ │ │ ├── iPhoneHTTPServer_Prefix.pch │ │ │ └── main.m │ └── Vendor │ │ ├── CocoaAsyncSocket │ │ ├── About.txt │ │ ├── GCDAsyncSocket.h │ │ └── GCDAsyncSocket.m │ │ └── CocoaLumberjack │ │ ├── About.txt │ │ ├── DDASLLogger.h │ │ ├── DDASLLogger.m │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAbstractDatabaseLogger.m │ │ ├── DDFileLogger.h │ │ ├── DDFileLogger.m │ │ ├── DDLog.h │ │ ├── DDLog.m │ │ ├── DDTTYLogger.h │ │ ├── DDTTYLogger.m │ │ └── Extensions │ │ ├── ContextFilterLogFormatter.h │ │ ├── ContextFilterLogFormatter.m │ │ ├── DispatchQueueLogFormatter.h │ │ ├── DispatchQueueLogFormatter.m │ │ └── README.txt ├── CocoaHTTPServer-master │ ├── .gitignore │ ├── .hgignore │ └── .travis.yml ├── Icecast-libshout-master │ └── config.h.in~ ├── Info.plist ├── LocalRadio Notes.rtf ├── LocalRadio-Source │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── CustomTaskController.h │ ├── CustomTaskController.m │ ├── FCCSearchController.h │ ├── FCCSearchController.m │ ├── HTTPWebServerConnection.h │ ├── HTTPWebServerConnection.m │ ├── HTTPWebServerController.h │ ├── HTTPWebServerController.m │ ├── LocalRadioAPI.h │ ├── LocalRadioAPI.m │ ├── LocalRadioAppSettings.h │ ├── LocalRadioAppSettings.m │ ├── SDRController.h │ ├── SDRController.m │ ├── SQLiteController.h │ ├── SQLiteController.m │ ├── SoxController.h │ ├── SoxController.m │ ├── StreamingServerController.h │ ├── StreamingServerController.m │ ├── TaskItem.h │ ├── TaskItem.m │ ├── TaskPipelineManager.h │ ├── TaskPipelineManager.m │ ├── UDPStatusListener.h │ ├── UDPStatusListener.m │ ├── UDPStatusListenerController.h │ ├── UDPStatusListenerController.m │ ├── URLTextField.h │ ├── URLTextField.m │ ├── WebViewDelegate.h │ ├── WebViewDelegate.m │ ├── data_skeleton.sqlite3 │ ├── main.m │ └── zip_lat_long.txt ├── LocalRadio-old.sqlite3 ├── LocalRadio.entitlements ├── NSFileManager_DirectoryLocations │ ├── NSFileManager+DirectoryLocations.h │ └── NSFileManager+DirectoryLocations.m ├── Red-Radio-Icon │ ├── WP_20161221_18_05_04_Pro.jpg │ ├── WP_20161221_18_05_04_Pro.jpg 825×1250 pixels.webloc │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ ├── icon_512x512@2x.png │ └── redphone.svg ├── SQLiteLibrary-master │ ├── LICENSE.txt │ ├── README.md │ ├── SQLiteLibrary.h │ └── SQLiteLibrary.m ├── Scripts │ ├── MacPorts_Libraries │ │ └── librtlsdr.0.5git.dylib │ ├── fix_rtl_fm_localradio.sh │ ├── fix_rtl_sdr_tools.sh │ ├── fix_sox.sh │ ├── fix_stereodemux.sh │ └── import_dylibs2.sh ├── Web │ ├── Monitor_Beacon.mp3 │ ├── Monitor_Beacon.wav │ ├── addcategory.html │ ├── addcategoryform.html │ ├── apple-icon-114x114.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-167x167.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-72x72.png │ ├── applyaacsettings.html │ ├── categories.html │ ├── category.html │ ├── credits.html │ ├── css │ │ ├── custom.css │ │ └── github-prettify-theme.css │ ├── customtasklistenbuttonclicked.html │ ├── deletecategory.html │ ├── deletefrequency.html │ ├── devicelistenbuttonclicked.html │ ├── devices.html │ ├── dist │ │ ├── css │ │ │ ├── normalize.css │ │ │ └── skeleton.css │ │ └── images │ │ │ └── favicon.png │ ├── editcategory.html │ ├── editcategoryitem.html │ ├── editcategorysettings.html │ ├── editfavorite.html │ ├── favicon.png │ ├── favorites.html │ ├── fonts │ │ ├── raleway-v11-latin-100.eot │ │ ├── raleway-v11-latin-100.svg │ │ ├── raleway-v11-latin-100.ttf │ │ ├── raleway-v11-latin-100.woff │ │ ├── raleway-v11-latin-100.woff2 │ │ ├── raleway-v11-latin-100italic.eot │ │ ├── raleway-v11-latin-100italic.svg │ │ ├── raleway-v11-latin-100italic.ttf │ │ ├── raleway-v11-latin-100italic.woff │ │ ├── raleway-v11-latin-100italic.woff2 │ │ ├── raleway-v11-latin-200.eot │ │ ├── raleway-v11-latin-200.svg │ │ ├── raleway-v11-latin-200.ttf │ │ ├── raleway-v11-latin-200.woff │ │ ├── raleway-v11-latin-200.woff2 │ │ ├── raleway-v11-latin-200italic.eot │ │ ├── raleway-v11-latin-200italic.svg │ │ ├── raleway-v11-latin-200italic.ttf │ │ ├── raleway-v11-latin-200italic.woff │ │ ├── raleway-v11-latin-200italic.woff2 │ │ ├── raleway-v11-latin-300.eot │ │ ├── raleway-v11-latin-300.svg │ │ ├── raleway-v11-latin-300.ttf │ │ ├── raleway-v11-latin-300.woff │ │ ├── raleway-v11-latin-300.woff2 │ │ ├── raleway-v11-latin-300italic.eot │ │ ├── raleway-v11-latin-300italic.svg │ │ ├── raleway-v11-latin-300italic.ttf │ │ ├── raleway-v11-latin-300italic.woff │ │ ├── raleway-v11-latin-300italic.woff2 │ │ ├── raleway-v11-latin-600.eot │ │ ├── raleway-v11-latin-600.svg │ │ ├── raleway-v11-latin-600.ttf │ │ ├── raleway-v11-latin-600.woff │ │ ├── raleway-v11-latin-600.woff2 │ │ ├── raleway-v11-latin-600italic.eot │ │ ├── raleway-v11-latin-600italic.svg │ │ ├── raleway-v11-latin-600italic.ttf │ │ ├── raleway-v11-latin-600italic.woff │ │ ├── raleway-v11-latin-600italic.woff2 │ │ ├── raleway-v11-latin-italic.eot │ │ ├── raleway-v11-latin-italic.svg │ │ ├── raleway-v11-latin-italic.ttf │ │ ├── raleway-v11-latin-italic.woff │ │ ├── raleway-v11-latin-italic.woff2 │ │ ├── raleway-v11-latin-regular.eot │ │ ├── raleway-v11-latin-regular.svg │ │ ├── raleway-v11-latin-regular.ttf │ │ ├── raleway-v11-latin-regular.woff │ │ └── raleway-v11-latin-regular.woff2 │ ├── frequencylistenbuttonclicked.html │ ├── images │ │ ├── LocalRadio-animation.svg │ │ ├── categories.svg │ │ ├── devices.svg │ │ ├── favicon.png │ │ ├── favorites.svg │ │ ├── gear.svg │ │ ├── info.svg │ │ ├── redphone.svg │ │ └── tuner.svg │ ├── index.html │ ├── index.html.original │ ├── index2.html │ ├── info.html │ ├── insertnewfrequency.html │ ├── js │ │ ├── jquery.min.js │ │ ├── localradio.js │ │ └── site.js │ ├── listen.html │ ├── listenbuttonclicked.html │ ├── localradio_api.html │ ├── nowplaying.html │ ├── nowplayingstatus.html │ ├── ofl_license.txt │ ├── scancategory.html │ ├── scancategorylisten.html │ ├── scannercategories.html │ ├── scannerlistenbuttonclicked.html │ ├── settings.html │ ├── skeleton.html │ ├── storecategory.html │ ├── storefrequency.html │ ├── tuner.html │ ├── tuner_advanced.html │ ├── tuner_am.html │ ├── tuner_aviation.html │ ├── tuner_general.html │ ├── tuner_wbfm.html │ └── viewfavorite.html ├── ezstream_mp3_ext.xml ├── icecast │ └── web │ │ └── silence-tone.mp3 ├── import_dylibs.sh ├── libsqlite3.dylib ├── rtl-sdr-master │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── Doxyfile.in │ ├── Makefile.am │ ├── README │ ├── cmake │ │ ├── Modules │ │ │ ├── FindLibUSB.cmake │ │ │ ├── FindThreads.cmake │ │ │ └── Version.cmake │ │ └── cmake_uninstall.cmake.in │ ├── configure.ac │ ├── git-version-gen │ ├── include │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── reg_field.h │ │ ├── rtl-sdr.h │ │ ├── rtl-sdr_export.h │ │ ├── rtlsdr_i2c.h │ │ ├── tuner_e4k.h │ │ ├── tuner_fc0012.h │ │ ├── tuner_fc0013.h │ │ ├── tuner_fc2580.h │ │ └── tuner_r82xx.h │ ├── librtlsdr.pc.in │ ├── m4 │ │ └── .gitignore │ ├── rtl-sdr.rules │ └── src │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── convenience │ │ ├── convenience.c │ │ └── convenience.h │ │ ├── getopt │ │ ├── getopt.c │ │ └── getopt.h │ │ ├── librtlsdr.c │ │ ├── rtl_adsb.c │ │ ├── rtl_eeprom.c │ │ ├── rtl_fm.c │ │ ├── rtl_power.c │ │ ├── rtl_sdr.c │ │ ├── rtl_tcp.c │ │ ├── rtl_test.c │ │ ├── rtlsdr.rc.in │ │ ├── tuner_e4k.c │ │ ├── tuner_fc0012.c │ │ ├── tuner_fc0013.c │ │ ├── tuner_fc2580.c │ │ └── tuner_r82xx.c ├── sox-build │ └── sox note └── stereo │ ├── rtl_fm_stereo.c │ └── rtl_fm_stereo.patch ├── README.md ├── SCREENSHOTS.md ├── StreamingServer ├── StreamingServer.xcodeproj │ └── project.pbxproj └── StreamingServer │ ├── CocoaHTTPServer-master-2 │ ├── .gitignore │ ├── .hgignore │ ├── .travis.yml │ ├── CocoaHTTPServer.podspec.json │ ├── Core │ │ ├── Categories │ │ │ ├── DDData.h │ │ │ ├── DDData.m │ │ │ ├── DDNumber.h │ │ │ ├── DDNumber.m │ │ │ ├── DDRange.h │ │ │ └── DDRange.m │ │ ├── HTTPAuthenticationRequest.h │ │ ├── HTTPAuthenticationRequest.m │ │ ├── HTTPConnection.h │ │ ├── HTTPConnection.m │ │ ├── HTTPLogging.h │ │ ├── HTTPMessage.h │ │ ├── HTTPMessage.m │ │ ├── HTTPResponse.h │ │ ├── HTTPServer.h │ │ ├── HTTPServer.m │ │ ├── Mime │ │ │ ├── MultipartFormDataParser.h │ │ │ ├── MultipartFormDataParser.m │ │ │ ├── MultipartMessageHeader.h │ │ │ ├── MultipartMessageHeader.m │ │ │ ├── MultipartMessageHeaderField.h │ │ │ └── MultipartMessageHeaderField.m │ │ ├── Responses │ │ │ ├── HTTPAsyncFileResponse.h │ │ │ ├── HTTPAsyncFileResponse.m │ │ │ ├── HTTPDataResponse.h │ │ │ ├── HTTPDataResponse.m │ │ │ ├── HTTPDynamicFileResponse.h │ │ │ ├── HTTPDynamicFileResponse.m │ │ │ ├── HTTPErrorResponse.h │ │ │ ├── HTTPErrorResponse.m │ │ │ ├── HTTPFileResponse.h │ │ │ ├── HTTPFileResponse.m │ │ │ ├── HTTPRedirectResponse.h │ │ │ └── HTTPRedirectResponse.m │ │ ├── WebSocket.h │ │ └── WebSocket.m │ ├── Extensions │ │ └── WebDAV │ │ │ ├── DAVConnection.h │ │ │ ├── DAVConnection.m │ │ │ ├── DAVResponse.h │ │ │ ├── DAVResponse.m │ │ │ ├── DELETEResponse.h │ │ │ ├── DELETEResponse.m │ │ │ ├── PUTResponse.h │ │ │ └── PUTResponse.m │ ├── LICENSE.txt │ ├── README.markdown │ ├── Samples │ │ ├── DynamicServer │ │ │ ├── DynamicServer-Info.plist │ │ │ ├── DynamicServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── DynamicServer.xcscheme │ │ │ ├── DynamicServerAppDelegate.h │ │ │ ├── DynamicServerAppDelegate.m │ │ │ ├── DynamicServer_Prefix.pch │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── HTTPResponseTest.h │ │ │ ├── HTTPResponseTest.m │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── README.markdown │ │ │ ├── Web │ │ │ │ └── index.html │ │ │ └── main.m │ │ ├── PasswdHTTPServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── PasswdHTTPServer.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── PasswdHTTPServer.xcscheme │ │ │ ├── PasswdHTTPServer_Prefix.pch │ │ │ ├── README.markdown │ │ │ └── main.m │ │ ├── PostHTTPServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── PostHTTPServer.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── PostHTTPServer.xcscheme │ │ │ ├── PostHTTPServer_Prefix.pch │ │ │ ├── README.markdown │ │ │ ├── Web │ │ │ │ └── index.html │ │ │ └── main.m │ │ ├── README.markdown │ │ ├── SecureHTTPServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── DDKeychain.h │ │ │ ├── DDKeychain.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── README.markdown │ │ │ ├── SecureHTTPServer.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SecureHTTPServer.xcscheme │ │ │ ├── SecureHTTPServer_Prefix.pch │ │ │ └── main.m │ │ ├── SecureWebSocketServer │ │ │ ├── README.markdown │ │ │ ├── SecureWebSocketServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SecureWebSocketServer.xcscheme │ │ │ └── SecureWebSocketServer │ │ │ │ ├── DDKeychain.h │ │ │ │ ├── DDKeychain.m │ │ │ │ ├── MyHTTPConnection.h │ │ │ │ ├── MyHTTPConnection.m │ │ │ │ ├── MyWebSocket.h │ │ │ │ ├── MyWebSocket.m │ │ │ │ ├── SecureWebSocketServer-Info.plist │ │ │ │ ├── SecureWebSocketServer-Prefix.pch │ │ │ │ ├── SecureWebSocketServerAppDelegate.h │ │ │ │ ├── SecureWebSocketServerAppDelegate.m │ │ │ │ ├── Web │ │ │ │ ├── WebSocketTest.js │ │ │ │ ├── WebSocketTest2.js │ │ │ │ └── index.html │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ ├── SimpleFileUploadServer │ │ │ ├── README.markdown │ │ │ ├── SimpleFileUploadServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SimpleFileUploadServer.xcscheme │ │ │ └── SimpleFileUploadServer │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── MyHTTPConnection.h │ │ │ │ ├── MyHTTPConnection.m │ │ │ │ ├── SimpleFileUploadServer-Info.plist │ │ │ │ ├── SimpleFileUploadServer-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ ├── main.m │ │ │ │ └── web │ │ │ │ ├── index.html │ │ │ │ └── upload.html │ │ ├── SimpleHTTPServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── Info.plist │ │ │ ├── README.markdown │ │ │ ├── SimpleHTTPServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SimpleHTTPServer.xcscheme │ │ │ ├── SimpleHTTPServer_Prefix.pch │ │ │ └── main.m │ │ ├── SimpleWebSocketServer │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── MyHTTPConnection.h │ │ │ ├── MyHTTPConnection.m │ │ │ ├── MyWebSocket.h │ │ │ ├── MyWebSocket.m │ │ │ ├── README.markdown │ │ │ ├── SimpleWebSocketServer-Info.plist │ │ │ ├── SimpleWebSocketServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── SimpleWebSocketServer.xcscheme │ │ │ ├── SimpleWebSocketServerAppDelegate.h │ │ │ ├── SimpleWebSocketServerAppDelegate.m │ │ │ ├── SimpleWebSocketServer_Prefix.pch │ │ │ ├── Web │ │ │ │ ├── WebSocketTest.js │ │ │ │ ├── WebSocketTest2.js │ │ │ │ └── index.html │ │ │ └── main.m │ │ ├── WebDAVServer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── English.lproj │ │ │ │ └── MainMenu.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── Info.plist │ │ │ ├── README.markdown │ │ │ ├── WebDAVServer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── WebDAVServer.xcscheme │ │ │ ├── WebDAVServer_Prefix.pch │ │ │ └── main.m │ │ ├── Xcode-Configurations │ │ │ ├── Base.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── ReadMe.txt │ │ │ └── Release.xcconfig │ │ └── iPhoneHTTPServer │ │ │ ├── Classes │ │ │ ├── iPhoneHTTPServerAppDelegate.h │ │ │ ├── iPhoneHTTPServerAppDelegate.m │ │ │ ├── iPhoneHTTPServerViewController.h │ │ │ └── iPhoneHTTPServerViewController.m │ │ │ ├── Default-568h@2x.png │ │ │ ├── MainWindow.xib │ │ │ ├── README.markdown │ │ │ ├── Web │ │ │ └── index.html │ │ │ ├── iPhoneHTTPServer-Info.plist │ │ │ ├── iPhoneHTTPServer.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── iPhoneHTTPServer.xcscheme │ │ │ ├── iPhoneHTTPServerViewController.xib │ │ │ ├── iPhoneHTTPServer_Prefix.pch │ │ │ └── main.m │ └── Vendor │ │ ├── CocoaAsyncSocket │ │ ├── About.txt │ │ ├── GCDAsyncSocket.h │ │ └── GCDAsyncSocket.m │ │ └── CocoaLumberjack │ │ ├── About.txt │ │ ├── DDASLLogger.h │ │ ├── DDASLLogger.m │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAbstractDatabaseLogger.m │ │ ├── DDFileLogger.h │ │ ├── DDFileLogger.m │ │ ├── DDLog.h │ │ ├── DDLog.m │ │ ├── DDTTYLogger.h │ │ ├── DDTTYLogger.m │ │ └── Extensions │ │ ├── ContextFilterLogFormatter.h │ │ ├── ContextFilterLogFormatter.m │ │ ├── DispatchQueueLogFormatter.h │ │ ├── DispatchQueueLogFormatter.m │ │ └── README.txt │ ├── CocoaLumberjack-3.4.2 │ └── Demos │ │ ├── Benchmark │ │ ├── Desktop │ │ │ ├── BenchmarkMac.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── BenchmarkMac.xcscheme │ │ │ ├── BenchmarkMac │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── BenchmarkMac-Info.plist │ │ │ │ ├── BenchmarkMac-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ ├── Podfile │ │ │ └── ReadMe.txt │ │ └── Mobile │ │ │ ├── BenchmarkIPhone-Info.plist │ │ │ ├── BenchmarkIPhone.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BenchmarkIPhone.xcscheme │ │ │ ├── BenchmarkIPhoneViewController.xib │ │ │ ├── BenchmarkIPhone_Prefix.pch │ │ │ ├── Classes │ │ │ ├── BenchmarkIPhoneAppDelegate.h │ │ │ ├── BenchmarkIPhoneAppDelegate.m │ │ │ ├── BenchmarkIPhoneViewController.h │ │ │ └── BenchmarkIPhoneViewController.m │ │ │ ├── Default-568h@2x.png │ │ │ ├── MainWindow.xib │ │ │ ├── Podfile │ │ │ ├── ReadMe.txt │ │ │ └── main.m │ │ ├── CLI │ │ ├── CLI.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CLI.xcscheme │ │ ├── CLI │ │ │ ├── CLI-Prefix.pch │ │ │ ├── CLI.1 │ │ │ └── main.m │ │ └── Podfile │ │ ├── CaptureASL │ │ ├── CaptureASL.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CaptureASL.xcscheme │ │ ├── CaptureASL │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── CaptureASL-Info.plist │ │ │ ├── CaptureASL-Prefix.pch │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── Main.storyboard │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ └── Podfile │ │ ├── ContextFilter │ │ ├── ContextFilter-Info.plist │ │ ├── ContextFilter.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ContextFilter.xcscheme │ │ ├── ContextFilterAppDelegate.h │ │ ├── ContextFilterAppDelegate.m │ │ ├── ContextFilter_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── MyContextFilter.h │ │ ├── MyContextFilter.m │ │ ├── Podfile │ │ ├── ThirdPartyFramework.h │ │ ├── ThirdPartyFramework.m │ │ └── main.m │ │ ├── CoreDataLogger │ │ ├── CoreDataLogger.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CoreDataLogger.xcscheme │ │ ├── CoreDataLogger │ │ │ ├── CoreDataLogger-Info.plist │ │ │ ├── CoreDataLogger-Prefix.pch │ │ │ ├── CoreDataLogger.h │ │ │ ├── CoreDataLogger.m │ │ │ ├── CoreDataLoggerAppDelegate.h │ │ │ ├── CoreDataLoggerAppDelegate.m │ │ │ ├── Log.xcdatamodeld │ │ │ │ ├── .xccurrentversion │ │ │ │ └── CocoaBotLog.xcdatamodel │ │ │ │ │ ├── elements │ │ │ │ │ └── layout │ │ │ ├── LogEntry.h │ │ │ ├── LogEntry.m │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ └── Podfile │ │ ├── CustomFormatters │ │ ├── CustomFormatters-Info.plist │ │ ├── CustomFormatters.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CustomFormatters.xcscheme │ │ ├── CustomFormattersAppDelegate.h │ │ ├── CustomFormattersAppDelegate.m │ │ ├── CustomFormatters_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── Podfile │ │ ├── ReadMe.txt │ │ ├── TestFormatter.h │ │ ├── TestFormatter.m │ │ └── main.m │ │ ├── CustomLogLevels │ │ ├── CustomLogLevels-Info.plist │ │ ├── CustomLogLevels.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CustomLogLevels.xcscheme │ │ ├── CustomLogLevelsAppDelegate.h │ │ ├── CustomLogLevelsAppDelegate.m │ │ ├── CustomLogLevels_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── MYLog.h │ │ ├── Podfile │ │ ├── ReadMe.txt │ │ └── main.m │ │ ├── Demos.xcworkspace │ │ └── contents.xcworkspacedata │ │ ├── DispatchQueueLogger │ │ ├── DispatchQueueLogger.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── DispatchQueueLogger.xcscheme │ │ ├── DispatchQueueLogger │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── DispatchQueueLogger-Info.plist │ │ │ ├── DispatchQueueLogger-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ └── Podfile │ │ ├── FineGrainedLogging │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── FineGrainedLogging-Info.plist │ │ ├── FineGrainedLogging.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── FineGrainedLogging.xcscheme │ │ ├── FineGrainedLoggingAppDelegate.h │ │ ├── FineGrainedLoggingAppDelegate.m │ │ ├── FineGrainedLogging_Prefix.pch │ │ ├── MYLog.h │ │ ├── Podfile │ │ ├── ReadMe.txt │ │ ├── TimerOne.h │ │ ├── TimerOne.m │ │ ├── TimerTwo.h │ │ ├── TimerTwo.m │ │ └── main.m │ │ ├── GlobalLogLevel │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── GlobalLogLevel-Info.plist │ │ ├── GlobalLogLevel.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── GlobalLogLevel.xcscheme │ │ ├── GlobalLogLevelAppDelegate.h │ │ ├── GlobalLogLevelAppDelegate.m │ │ ├── GlobalLogLevel_Prefix.pch │ │ ├── MyLogging.h │ │ ├── Podfile │ │ ├── Stuff.h │ │ ├── Stuff.m │ │ └── main.m │ │ ├── LogFileCompressor │ │ ├── CompressingLogFileManager.h │ │ ├── CompressingLogFileManager.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── LogFileCompressor-Info.plist │ │ ├── LogFileCompressor.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── LogFileCompressor.xcscheme │ │ ├── LogFileCompressorAppDelegate.h │ │ ├── LogFileCompressorAppDelegate.m │ │ ├── LogFileCompressor_Prefix.pch │ │ ├── Podfile │ │ ├── ReadMe.txt │ │ └── main.m │ │ ├── NonArcTest │ │ ├── NonArcTest.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── NonArcTest.xcscheme │ │ ├── NonArcTest │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── NonArcTest-Info.plist │ │ │ ├── NonArcTest-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ └── Podfile │ │ ├── OverflowTestMac │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── OverflowTestMac-Info.plist │ │ ├── OverflowTestMac.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── OverflowTestMac.xcscheme │ │ ├── OverflowTestMacAppDelegate.h │ │ ├── OverflowTestMacAppDelegate.m │ │ ├── OverflowTestMac_Prefix.pch │ │ ├── Podfile │ │ ├── ReadMe.txt │ │ ├── SlowLogger.h │ │ ├── SlowLogger.m │ │ └── main.m │ │ ├── PerUserLogLevels │ │ ├── PerUserLogLevels.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── PerUserLogLevels.xcscheme │ │ ├── PerUserLogLevels │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── PerUserLogLevels-Info.plist │ │ │ ├── PerUserLogLevels-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── Podfile │ │ └── Scripts │ │ │ └── LumberjackUser.bash │ │ ├── RegisteredDynamicLogging │ │ ├── Desktop │ │ │ ├── Podfile │ │ │ ├── RegisteredLoggingTest.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── RegisteredLoggingTest.xcscheme │ │ │ └── RegisteredLoggingTest │ │ │ │ ├── Lions.h │ │ │ │ ├── Lions.m │ │ │ │ ├── RegisteredLoggingTest-Info.plist │ │ │ │ ├── RegisteredLoggingTest-Prefix.pch │ │ │ │ ├── RegisteredLoggingTestAppDelegate.h │ │ │ │ ├── RegisteredLoggingTestAppDelegate.m │ │ │ │ ├── Tigers.h │ │ │ │ ├── Tigers.m │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ └── Mobile │ │ │ ├── Default-568h@2x.png │ │ │ ├── Podfile │ │ │ ├── RegisteredLoggingTest.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── RegisteredLoggingTest.xcscheme │ │ │ └── RegisteredLoggingTest │ │ │ ├── Lions.h │ │ │ ├── Lions.m │ │ │ ├── RegisteredLoggingTest-Info.plist │ │ │ ├── RegisteredLoggingTest-Prefix.pch │ │ │ ├── RegisteredLoggingTestAppDelegate.h │ │ │ ├── RegisteredLoggingTestAppDelegate.m │ │ │ ├── RegisteredLoggingTestViewController.h │ │ │ ├── RegisteredLoggingTestViewController.m │ │ │ ├── Tigers.h │ │ │ ├── Tigers.m │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── RegisteredLoggingTestViewController.xib │ │ │ └── main.m │ │ ├── RollingTestMac │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── Podfile │ │ ├── ReadMe.txt │ │ ├── RollingTestMac-Info.plist │ │ ├── RollingTestMac.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── RollingTestMac.xcscheme │ │ ├── RollingTestMacAppDelegate.h │ │ ├── RollingTestMacAppDelegate.m │ │ ├── RollingTestMac_Prefix.pch │ │ └── main.m │ │ ├── SQLiteLogger │ │ ├── FMDB │ │ │ ├── FMDatabase.h │ │ │ ├── FMDatabase.m │ │ │ ├── FMDatabaseAdditions.h │ │ │ ├── FMDatabaseAdditions.m │ │ │ ├── FMResultSet.h │ │ │ └── FMResultSet.m │ │ ├── FMDBLogger.h │ │ ├── FMDBLogger.m │ │ ├── Podfile │ │ ├── SQLiteLogger.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── SQLiteLogger.xcscheme │ │ └── SQLiteLogger │ │ │ ├── SQLiteLogger-Info.plist │ │ │ ├── SQLiteLogger-Prefix.pch │ │ │ ├── SQLiteLoggerAppDelegate.h │ │ │ ├── SQLiteLoggerAppDelegate.m │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── TestXcodeColors │ │ ├── Desktop │ │ │ ├── Podfile │ │ │ ├── TestXcodeColors.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── TestXcodeColors.xcscheme │ │ │ └── TestXcodeColors │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── TestXcodeColors-Info.plist │ │ │ │ ├── TestXcodeColors-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ └── Mobile │ │ │ ├── Default-568h@2x.png │ │ │ ├── Podfile │ │ │ ├── TextXcodeColors.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TextXcodeColors.xcscheme │ │ │ └── TextXcodeColors │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── TextXcodeColors-Info.plist │ │ │ ├── TextXcodeColors-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── ViewController.xib │ │ │ └── main.m │ │ ├── UniversalApp │ │ ├── Classes │ │ │ ├── UniversalAppAppDelegate.h │ │ │ ├── UniversalAppAppDelegate.m │ │ │ ├── UniversalAppViewController.h │ │ │ └── UniversalAppViewController.m │ │ ├── Default-568h@2x.png │ │ ├── MainWindow.xib │ │ ├── Podfile │ │ ├── UniversalApp-Info.plist │ │ ├── UniversalApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── UniversalApp.xcscheme │ │ ├── UniversalAppViewController.xib │ │ ├── UniversalApp_Prefix.pch │ │ └── main.m │ │ └── WebServerIPhone │ │ ├── Classes │ │ ├── MyHTTPConnection.h │ │ ├── MyHTTPConnection.m │ │ ├── WebServerIPhoneAppDelegate.h │ │ ├── WebServerIPhoneAppDelegate.m │ │ ├── WebServerIPhoneViewController.h │ │ ├── WebServerIPhoneViewController.m │ │ ├── WebSocketLogger.h │ │ └── WebSocketLogger.m │ │ ├── Default-568h@2x.png │ │ ├── MainWindow.xib │ │ ├── Podfile │ │ ├── ReadMe.txt │ │ ├── Vendor │ │ ├── CocoaAsyncSocket │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncSocket.m │ │ └── CocoaHTTPServer │ │ │ ├── Categories │ │ │ ├── DDData.h │ │ │ ├── DDData.m │ │ │ ├── DDNumber.h │ │ │ ├── DDNumber.m │ │ │ ├── DDRange.h │ │ │ └── DDRange.m │ │ │ ├── HTTPAuthenticationRequest.h │ │ │ ├── HTTPAuthenticationRequest.m │ │ │ ├── HTTPConnection.h │ │ │ ├── HTTPConnection.m │ │ │ ├── HTTPLogging.h │ │ │ ├── HTTPMessage.h │ │ │ ├── HTTPMessage.m │ │ │ ├── HTTPResponse.h │ │ │ ├── HTTPServer.h │ │ │ ├── HTTPServer.m │ │ │ ├── Mime │ │ │ ├── MultipartFormDataParser.h │ │ │ ├── MultipartFormDataParser.m │ │ │ ├── MultipartMessageHeader.h │ │ │ ├── MultipartMessageHeader.m │ │ │ ├── MultipartMessageHeaderField.h │ │ │ └── MultipartMessageHeaderField.m │ │ │ ├── Responses │ │ │ ├── HTTPAsyncFileResponse.h │ │ │ ├── HTTPAsyncFileResponse.m │ │ │ ├── HTTPDataResponse.h │ │ │ ├── HTTPDataResponse.m │ │ │ ├── HTTPDynamicFileResponse.h │ │ │ ├── HTTPDynamicFileResponse.m │ │ │ ├── HTTPErrorResponse.h │ │ │ ├── HTTPErrorResponse.m │ │ │ ├── HTTPFileResponse.h │ │ │ ├── HTTPFileResponse.m │ │ │ ├── HTTPRedirectResponse.h │ │ │ └── HTTPRedirectResponse.m │ │ │ ├── WebSocket.h │ │ │ └── WebSocket.m │ │ ├── Web │ │ ├── index.html │ │ ├── jquery-1.4.2.min.js │ │ ├── socket.html │ │ └── styles.css │ │ ├── WebServerIPhone-Info.plist │ │ ├── WebServerIPhone.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── WebServerIPhone.xcscheme │ │ ├── WebServerIPhoneViewController.xib │ │ ├── WebServerIPhone_Prefix.pch │ │ └── main.m │ ├── HTTPStreamingServer.h │ ├── HTTPStreamingServer.m │ ├── HTTPStreamingServerConnection.h │ ├── HTTPStreamingServerConnection.m │ ├── HTTPStreamingServerController.h │ ├── HTTPStreamingServerController.m │ ├── HTTPStreamingServerResponse.h │ ├── HTTPStreamingServerResponse.m │ ├── StreamingServer.entitlements │ └── main.m ├── UDPListener └── UDPListener │ ├── UDPListener.entitlements │ ├── UDPListener.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── UDPListener.xcscheme │ └── UDPListener │ ├── main copy.m │ └── main.m ├── UDPSender ├── UDPSender.entitlements ├── UDPSender.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── UDPSender.xcscheme └── UDPSender │ └── main.m ├── rtl_fm_localradio ├── rtl_fm_localradio.entitlements ├── rtl_fm_localradio.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── rtl_fm_localradio.xcscheme └── rtl_fm_localradio │ ├── rtl_fm_localradio copy.m │ └── rtl_fm_localradio.m ├── sox └── sox git and build notes.txt └── wfm-tools ├── .deps ├── .dirstamp └── stereodemux-liquid_wrappers.Po ├── .dirstamp ├── Could not find liquid-dsp, but liquid-dsp is installed from MacPorts · Issue #45 ·.webarchive ├── README.md ├── build_stereodemux.sh ├── liquid_wrappers.cc ├── liquid_wrappers.h ├── stereodemux-liquid_wrappers.o ├── stereodemux.entitlements ├── stereodemux ├── .deps │ └── stereodemux-stereodemux.Po ├── Makefile ├── Makefile.am ├── Makefile.in ├── aclocal.m4 ├── autogen.sh ├── autom4te.cache │ ├── output.0 │ ├── output.1 │ ├── requests │ ├── traces.0 │ └── traces.1 ├── compile ├── config.h ├── config.h.in ├── config.log ├── config.status ├── configure ├── configure.ac ├── depcomp ├── install-sh ├── missing ├── stamp-h1 ├── stereodemux ├── stereodemux-stereodemux.o └── stereodemux.cc └── wfm-tools.xcodeproj ├── project.pbxproj └── xcshareddata └── xcschemes └── wfm-tools.xcscheme /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Icecast-Server/externals/Icecast-Server"] 2 | path = Icecast-Server/externals/Icecast-Server 3 | url = ./Icecast-Server/externals/Icecast-Server/ 4 | [submodule "sox/externals/sox"] 5 | path = sox/externals/sox 6 | url = ./sox/externals/sox/ 7 | -------------------------------------------------------------------------------- /AACEncoder/AACEncoder.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.inherit 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AudioMonitor/AudioMonitor.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.inherit 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Documents/Images/1@2x,3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/1@2x,3.jpg -------------------------------------------------------------------------------- /Documents/Images/620x620,1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/620x620,1.png -------------------------------------------------------------------------------- /Documents/Images/antenna-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/antenna-small.png -------------------------------------------------------------------------------- /Documents/Images/antenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/antenna.jpg -------------------------------------------------------------------------------- /Documents/Images/antenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/antenna.png -------------------------------------------------------------------------------- /Documents/Images/antenna.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/antenna.psd -------------------------------------------------------------------------------- /Documents/Images/antique_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/antique_radio.png -------------------------------------------------------------------------------- /Documents/Images/antique_radio.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/antique_radio.psd -------------------------------------------------------------------------------- /Documents/Images/iphone-screen-1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/iphone-screen-1.tiff -------------------------------------------------------------------------------- /Documents/Images/iphone-screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/iphone-screen-2.png -------------------------------------------------------------------------------- /Documents/Images/iphone-screen-2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/iphone-screen-2.tiff -------------------------------------------------------------------------------- /Documents/Images/mac-mini-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/mac-mini-small.png -------------------------------------------------------------------------------- /Documents/Images/macos-screen-1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/macos-screen-1.tiff -------------------------------------------------------------------------------- /Documents/Images/macos-screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/macos-screen-2.png -------------------------------------------------------------------------------- /Documents/Images/macos-screen-2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/macos-screen-2.tiff -------------------------------------------------------------------------------- /Documents/Images/psp-mini-hero-iphone-screen_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/psp-mini-hero-iphone-screen_2x.png -------------------------------------------------------------------------------- /Documents/Images/refurb-mac-mini-2014-gallery.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/refurb-mac-mini-2014-gallery.jpeg -------------------------------------------------------------------------------- /Documents/Images/rtl-sdr-2-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/rtl-sdr-2-small.png -------------------------------------------------------------------------------- /Documents/Images/rtl-sdr-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/rtl-sdr-2.png -------------------------------------------------------------------------------- /Documents/Images/rtl-sdr-kit.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/rtl-sdr-kit.jpeg -------------------------------------------------------------------------------- /Documents/Images/rtl-sdr.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/rtl-sdr.jpeg -------------------------------------------------------------------------------- /Documents/Images/rtl-sdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/rtl-sdr.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/LocalRadio1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/LocalRadio1.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/LocalRadio2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/LocalRadio2.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/LocalRadio3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/LocalRadio3.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/LocalRadio4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/LocalRadio4.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/LocalRadio5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/LocalRadio5.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/LocalRadio6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/LocalRadio6.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/MacSafari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/MacSafari.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/iPhone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/iPhone1.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/iPhone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/iPhone2.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/iPhone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/iPhone3.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/iPhone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/iPhone4.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/iPhone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/iPhone5.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/iPhone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/iPhone6.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/iPhone7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/iPhone7.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/iPhone8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/iPhone8.png -------------------------------------------------------------------------------- /Documents/Images/screen_caps/scanning_status.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/scanning_status.gif -------------------------------------------------------------------------------- /Documents/Images/screen_caps/tiff/MacSafari.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/tiff/MacSafari.tiff -------------------------------------------------------------------------------- /Documents/Images/screen_caps/tiff/iPhone1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/tiff/iPhone1.tiff -------------------------------------------------------------------------------- /Documents/Images/screen_caps/tiff/iPhone2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/tiff/iPhone2.tiff -------------------------------------------------------------------------------- /Documents/Images/screen_caps/tiff/iPhone3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/tiff/iPhone3.tiff -------------------------------------------------------------------------------- /Documents/Images/screen_caps/tiff/iPhone4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/tiff/iPhone4.tiff -------------------------------------------------------------------------------- /Documents/Images/screen_caps/tiff/iPhone5.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/tiff/iPhone5.tiff -------------------------------------------------------------------------------- /Documents/Images/screen_caps/tiff/iPhone6.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/tiff/iPhone6.tiff -------------------------------------------------------------------------------- /Documents/Images/screen_caps/tiff/iPhone7.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/tiff/iPhone7.tiff -------------------------------------------------------------------------------- /Documents/Images/screen_caps/tiff/iPhone8.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/screen_caps/tiff/iPhone8.tiff -------------------------------------------------------------------------------- /Documents/Images/touch_screen_digitizer_for_celkon_a125_white_by_maxbhi.com_92064.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/Documents/Images/touch_screen_digitizer_for_celkon_a125_white_by_maxbhi.com_92064.jpg -------------------------------------------------------------------------------- /IcecastSource/IcecastSource.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.inherit 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /IcecastSource/IcecastSource/CocoaLumberjack-master/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /IcecastSource/IcecastSource/CocoaLumberjack-master/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/IcecastSource/IcecastSource/CocoaLumberjack-master/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/elements -------------------------------------------------------------------------------- /IcecastSource/IcecastSource/CocoaLumberjack-master/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/IcecastSource/IcecastSource/CocoaLumberjack-master/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/layout -------------------------------------------------------------------------------- /IcecastSourceClient/IcecastSourceClient.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.inherit 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LocalRadio.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LocalRadio.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | PreviewsEnabled 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /LocalRadio/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } -------------------------------------------------------------------------------- /LocalRadio/Automator Scripts/LocalRadio Clean-Up.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleName 6 | LocalRadio Clean-Up 7 | 8 | 9 | -------------------------------------------------------------------------------- /LocalRadio/Automator Scripts/LocalRadio Clean-Up.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Automator Scripts/LocalRadio Clean-Up.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/.travis.yml: -------------------------------------------------------------------------------- 1 | osx_image: xcode9.2 2 | language: objective-c 3 | 4 | install: 5 | - cd Tests 6 | - bundle install 7 | - bundle exec pod install --project-directory=./iOS 8 | - bundle exec pod install --project-directory=./Mac 9 | - cd ../ 10 | 11 | script: 12 | - export IOS_VERSION="11.2" # waiting for xcode9.3 on Travis 13 | - bash Tests/test-all.sh 14 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/CocoaAsyncSocket.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/BonjourClient/BonjourClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/BonjourClient/BonjourClient_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BonjourClient' target in the 'BonjourClient' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/BonjourClient/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/BonjourClient/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BonjourClient 4 | // 5 | // Created by Robbie Hanson on 1/27/11. 6 | // Copyright 2011 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/BonjourServer/BonjourServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/BonjourServer/BonjourServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BonjourServer' target in the 'BonjourServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/BonjourServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/BonjourServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BonjourServer 4 | // 5 | // Created by Robbie Hanson on 1/27/11. 6 | // Copyright 2011 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Desktop/ConnectTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Desktop/ConnectTest/ConnectTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ConnectTest' target in the 'ConnectTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Desktop/ConnectTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Desktop/ConnectTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ConnectTest 4 | // 5 | // Created by Robbie Hanson on 7/23/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Mobile/ConnectTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Mobile/ConnectTest/ConnectTestViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface ConnectTestViewController : UIViewController { 5 | 6 | } 7 | 8 | @property (nonatomic, strong) IBOutlet UILabel *label; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Mobile/ConnectTest/ConnectTestViewController.m: -------------------------------------------------------------------------------- 1 | #import "ConnectTestViewController.h" 2 | 3 | 4 | @implementation ConnectTestViewController 5 | 6 | @synthesize label = _label; 7 | 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Mobile/ConnectTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/ConnectTest/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The ConnectTest projects demonstrates some of the various options available for connecting to a host, such as: 2 | 3 | - Setting connect timeouts 4 | - Connecting to secure hosts (using SSL/TLS) -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/DomainTest/DomainTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/DomainTest/DomainTest/DomainTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'DomainTest' target in the 'DomainTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/DomainTest/DomainTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/DomainTest/DomainTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DomainTest 4 | // 5 | // Created by Jonathan Diehl on 06.10.12. 6 | // Copyright (c) 2012 Jonathan Diehl. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/EchoServer/EchoServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/EchoServer/EchoServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'EchoServer' target in the 'EchoServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/EchoServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/EchoServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // EchoServer 4 | // 5 | // Created by Robbie Hanson on 11/4/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Desktop/SimpleHTTPClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Desktop/SimpleHTTPClient/SimpleHTTPClient-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SimpleHTTPClient' target in the 'SimpleHTTPClient' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Desktop/SimpleHTTPClient/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Desktop/SimpleHTTPClient/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SimpleHTTPClient 4 | // 5 | // Created by Robbie Hanson on 7/5/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Mobile/SimpleHTTPClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Mobile/SimpleHTTPClient/SimpleHTTPClientViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface SimpleHTTPClientViewController : UIViewController { 5 | 6 | } 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Mobile/SimpleHTTPClient/SimpleHTTPClientViewController.m: -------------------------------------------------------------------------------- 1 | #import "SimpleHTTPClientViewController.h" 2 | 3 | 4 | @implementation SimpleHTTPClientViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/Mobile/SimpleHTTPClient/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/SimpleHTTPClient/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The SimpleHTTPClient projects are just a simple demonstration of reading and writing data using GCDAsyncSocket. Obviously it's not meant to be a full fledged HTTP client. There are other excellent libraries for that task. But the HTTP protocol itself is so simple, it makes for a great example. -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Desktop/TestPreBuffer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Desktop/TestPreBuffer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface AppDelegate : NSObject 5 | 6 | @property (assign) IBOutlet NSWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Desktop/TestPreBuffer/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | #import "TestPreBuffer.h" 3 | 4 | 5 | @implementation AppDelegate 6 | 7 | @synthesize window = _window; 8 | 9 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification 10 | { 11 | [TestPreBuffer start]; 12 | } 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Desktop/TestPreBuffer/TestPreBuffer-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestPreBuffer' target in the 'TestPreBuffer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Desktop/TestPreBuffer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Desktop/TestPreBuffer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TestPreBuffer 4 | // 5 | // Created by Robbie Hanson on 6/7/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Mobile/TestPreBuffer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Mobile/TestPreBuffer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class ViewController; 4 | 5 | 6 | @interface AppDelegate : UIResponder 7 | 8 | @property (strong, nonatomic) UIWindow *window; 9 | @property (strong, nonatomic) ViewController *viewController; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Mobile/TestPreBuffer/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // TestPreBuffer 4 | // 5 | // Created by Robbie Hanson on 6/7/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Mobile/TestPreBuffer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/TestPreBuffer/Shared/TestPreBuffer.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface TestPreBuffer : NSObject 5 | 6 | + (void)start; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoClient/Desktop/UdpEchoClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoClient/Desktop/UdpEchoClient/UdpEchoClient-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UdpEchoClient' target in the 'UdpEchoClient' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoClient/Desktop/UdpEchoClient/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoClient/Desktop/UdpEchoClient/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UdpEchoClient 4 | // 5 | // Created by Robbie Hanson on 11/28/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoClient/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoClient/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoClient/Mobile/UdpEchoClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoClient/Mobile/UdpEchoClient/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class ViewController; 4 | 5 | 6 | @interface AppDelegate : UIResponder 7 | 8 | @property (strong, nonatomic) UIWindow *window; 9 | @property (strong, nonatomic) ViewController *viewController; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoClient/Mobile/UdpEchoClient/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Desktop/UdpEchoServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Desktop/UdpEchoServer/UdpEchoServer-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UdpEchoServer' target in the 'UdpEchoServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Desktop/UdpEchoServer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Desktop/UdpEchoServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UdpEchoServer 4 | // 5 | // Created by Robbie Hanson on 11/23/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Mobile/UdpEchoServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Mobile/UdpEchoServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class ViewController; 4 | 5 | 6 | @interface AppDelegate : UIResponder 7 | 8 | @property (strong, nonatomic) UIWindow *window; 9 | @property (strong, nonatomic) ViewController *viewController; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Mobile/UdpEchoServer/ViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "GCDAsyncUdpSocket.h" 3 | 4 | @interface ViewController : UIViewController 5 | { 6 | IBOutlet UITextField *portField; 7 | IBOutlet UIButton *startStopButton; 8 | IBOutlet UIWebView *webView; 9 | } 10 | 11 | - (IBAction)startStop:(id)sender; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/GCD/UdpEchoServer/Mobile/UdpEchoServer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/EchoServer/EchoServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/EchoServer/EchoServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'EchoServer' target in the 'EchoServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/EchoServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/EchoServer/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/EchoServer/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/EchoServer/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/EchoServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // EchoServer 4 | // 5 | // Created by Robbie Hanson on 7/10/08. 6 | // Copyright __MyCompanyName__ 2008. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/InterfaceTest/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/InterfaceTest/Default-568h@2x.png -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/InterfaceTest/InterfaceTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/InterfaceTest/InterfaceTest_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'InterfaceTest' target in the 'InterfaceTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/UdpEchoClient/UdpEchoClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/UdpEchoClient/UdpEchoClient/UdpEchoClient-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UdpEchoClient' target in the 'UdpEchoClient' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/UdpEchoClient/UdpEchoClient/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/UdpEchoClient/UdpEchoClient/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UdpEchoClient 4 | // 5 | // Created by Robbie Hanson on 4/1/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/UdpEchoServer/UdpEchoServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/UdpEchoServer/UdpEchoServer/UdpEchoServer-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UdpEchoServer' target in the 'UdpEchoServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/UdpEchoServer/UdpEchoServer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Examples/RunLoop/UdpEchoServer/UdpEchoServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UdpEchoServer 4 | // 5 | // Created by Robbie Hanson on 4/1/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/Framework/CocoaAsyncSocketTests.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/Framework/CocoaAsyncSocketTests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "cocoapods", "~>1.4.0" 4 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/Mac/CocoaAsyncSocket.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/Mac/CocoaAsyncSocket.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/Mac/CocoaAsyncSocket.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/Mac/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | use_frameworks! 4 | 5 | target :CocoaAsyncSocketTestsMac do 6 | platform :osx, '10.8' 7 | pod 'CocoaAsyncSocket', :path => '../../CocoaAsyncSocket.podspec' 8 | end -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/Shared/SecureSocketServer.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaAsyncSocket-7.6.3/Tests/Shared/SecureSocketServer.p12 -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/iOS/CocoaAsyncSocket.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/iOS/CocoaAsyncSocket.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/iOS/CocoaAsyncSocket.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaAsyncSocket-7.6.3/Tests/iOS/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | use_frameworks! 4 | 5 | target :CocoaAsyncSocketTestsiOS do 6 | platform :ios, '8.0' 7 | pod 'CocoaAsyncSocket', :path => '../../CocoaAsyncSocket.podspec' 8 | end -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pbxuser 3 | *.mode1v3 4 | *.mode2v3 5 | xcuserdata 6 | *~ 7 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | 3 | Samples/*/build 4 | *.pbxuser 5 | *.mode1v3 6 | *.xcuserdatad 7 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Core/Categories/DDData.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NSData (DDData) 4 | 5 | - (NSData *)md5Digest; 6 | 7 | - (NSData *)sha1Digest; 8 | 9 | - (NSString *)hexStringValue; 10 | 11 | - (NSString *)base64Encoded; 12 | - (NSData *)base64Decoded; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Core/Responses/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPDataResponse : NSObject 6 | { 7 | NSUInteger offset; 8 | NSData *data; 9 | } 10 | 11 | - (id)initWithData:(NSData *)data; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Core/Responses/HTTPErrorResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface HTTPErrorResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | 7 | - (id)initWithErrorCode:(int)httpErrorCode; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Core/Responses/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPRedirectResponse : NSObject 6 | { 7 | NSString *redirectPath; 8 | } 9 | 10 | - (id)initWithPath:(NSString *)redirectPath; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Extensions/WebDAV/DAVConnection.h: -------------------------------------------------------------------------------- 1 | #import "HTTPConnection.h" 2 | 3 | @interface DAVConnection : HTTPConnection { 4 | id requestContentBody; 5 | NSOutputStream* requestContentStream; 6 | } 7 | @end 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Extensions/WebDAV/DELETEResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface DELETEResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | - (id) initWithFilePath:(NSString*)path; 7 | @end 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Extensions/WebDAV/PUTResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface PUTResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | - (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyData:(NSData*)body; 7 | - (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyFile:(NSString*)body; 8 | @end 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/DynamicServer/DynamicServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/DynamicServer/DynamicServerAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | 6 | @interface DynamicServerAppDelegate : NSObject 7 | { 8 | HTTPServer *httpServer; 9 | 10 | NSWindow *__unsafe_unretained window; 11 | } 12 | 13 | @property (unsafe_unretained) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/DynamicServer/DynamicServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'DynamicServer' target in the 'DynamicServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/DynamicServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/DynamicServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/DynamicServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DynamicServer 4 | // 5 | // Created by Robbie Hanson on 11/20/10. 6 | // Copyright 2010 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PasswdHTTPServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | 6 | @interface AppDelegate : NSObject 7 | { 8 | HTTPServer *httpServer; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PasswdHTTPServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/PasswdHTTPServer/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PasswdHTTPServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | { 7 | 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PasswdHTTPServer/PasswdHTTPServer.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/PasswdHTTPServer/PasswdHTTPServer.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PasswdHTTPServer/PasswdHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PasswdHTTPServer/PasswdHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PasswdHTTPServer' target in the 'PasswdHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PasswdHTTPServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PasswdHTTPServer 4 | // 5 | // Created by Robbie Hanson on 5/19/09. 6 | // Copyright Deusty Designs, LLC. 2009. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | 6 | @interface AppDelegate : NSObject 7 | { 8 | HTTPServer *httpServer; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | 7 | @end -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/PostHTTPServer.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/PostHTTPServer.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/PostHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/PostHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PostHTTPServer' target in the 'PostHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/Web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | What is 5 + 5 ? :
5 | 6 |
7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/PostHTTPServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PostHTTPServer 4 | // 5 | // Created by Robbie Hanson on 11/20/08. 6 | // Copyright Deusty Designs, LLC. 2008. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | 6 | @interface AppDelegate : NSObject 7 | { 8 | HTTPServer *httpServer; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/DDKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/DDKeychain.m -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | { 7 | 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/SecureHTTPServer.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/SecureHTTPServer.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/SecureHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/SecureHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SecureHTTPServer' target in the 'SecureHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureHTTPServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SecureHTTPServer 4 | // 5 | // Created by Robbie Hanson on 5/19/09. 6 | // Copyright Deusty Designs, LLC. 2009. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureWebSocketServer/SecureWebSocketServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureWebSocketServer/SecureWebSocketServer/DDKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/SecureWebSocketServer/SecureWebSocketServer/DDKeychain.m -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureWebSocketServer/SecureWebSocketServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | @class MyWebSocket; 5 | 6 | @interface MyHTTPConnection : HTTPConnection 7 | { 8 | MyWebSocket *ws; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureWebSocketServer/SecureWebSocketServer/MyWebSocket.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "WebSocket.h" 3 | 4 | 5 | @interface MyWebSocket : WebSocket 6 | { 7 | 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureWebSocketServer/SecureWebSocketServer/SecureWebSocketServer-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SecureWebSocketServer' target in the 'SecureWebSocketServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureWebSocketServer/SecureWebSocketServer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SecureWebSocketServer/SecureWebSocketServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SecureWebSocketServer 4 | // 5 | // Created by Robbie Hanson on 6/3/11. 6 | // Copyright 2011 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleFileUploadServer/SimpleFileUploadServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleFileUploadServer/SimpleFileUploadServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @class HTTPServer; 5 | 6 | @interface AppDelegate : NSObject { 7 | HTTPServer *httpServer; 8 | } 9 | 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleFileUploadServer/SimpleFileUploadServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | 2 | #import "HTTPConnection.h" 3 | 4 | @class MultipartFormDataParser; 5 | 6 | @interface MyHTTPConnection : HTTPConnection { 7 | MultipartFormDataParser* parser; 8 | NSFileHandle* storeFile; 9 | 10 | NSMutableArray* uploadedFiles; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleFileUploadServer/SimpleFileUploadServer/SimpleFileUploadServer-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SimpleFileUploadServer' target in the 'SimpleFileUploadServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleFileUploadServer/SimpleFileUploadServer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleFileUploadServer/SimpleFileUploadServer/web/upload.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | %MyFiles% 8 | 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleHTTPServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | @class HTTPServer; 3 | 4 | @interface AppDelegate : NSObject 5 | { 6 | HTTPServer *httpServer; 7 | } 8 | @end 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleHTTPServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleHTTPServer/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleHTTPServer/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleHTTPServer/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleHTTPServer/SimpleHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleHTTPServer/SimpleHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SimpleHTTPServer' target in the 'SimpleHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleHTTPServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SimpleHTTPServer 4 | // 5 | // Created by Robert Hanson on 6/6/07. 6 | // Copyright Deusty Designs, LLC 2007. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleWebSocketServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleWebSocketServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | @class MyWebSocket; 5 | 6 | @interface MyHTTPConnection : HTTPConnection 7 | { 8 | MyWebSocket *ws; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleWebSocketServer/MyWebSocket.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "WebSocket.h" 3 | 4 | 5 | @interface MyWebSocket : WebSocket 6 | { 7 | 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleWebSocketServer/SimpleWebSocketServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleWebSocketServer/SimpleWebSocketServerAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | 6 | @interface SimpleWebSocketServerAppDelegate : NSObject 7 | { 8 | HTTPServer *httpServer; 9 | NSWindow *__unsafe_unretained window; 10 | } 11 | 12 | @property (unsafe_unretained) IBOutlet NSWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleWebSocketServer/SimpleWebSocketServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SimpleWebSocketServer' target in the 'SimpleWebSocketServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/SimpleWebSocketServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SimpleWebSocketServer 4 | // 5 | // Created by Robbie Hanson on 4/20/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/WebDAVServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | @interface AppDelegate : NSObject { 6 | @private 7 | HTTPServer* _httpServer; 8 | } 9 | @end 10 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/WebDAVServer/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/WebDAVServer/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/WebDAVServer/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/WebDAVServer/README.markdown -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/WebDAVServer/WebDAVServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/WebDAVServer/WebDAVServer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/WebDAVServer/WebDAVServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/WebDAVServer/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main(int argc, char* argv[]) { 4 | return NSApplicationMain(argc, (const char**)argv); 5 | } 6 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/Xcode-Configurations/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Base" 2 | 3 | // Common 4 | ONLY_ACTIVE_ARCH = YES 5 | GCC_OPTIMIZATION_LEVEL = 0 6 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/Xcode-Configurations/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Base" 2 | 3 | // Common 4 | GCC_TREAT_WARNINGS_AS_ERRORS = YES 5 | GCC_PREPROCESSOR_DEFINITIONS = NDEBUG NS_BLOCK_ASSERTIONS 6 | VALIDATE_PRODUCT = YES 7 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/iPhoneHTTPServer/Classes/iPhoneHTTPServerViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface iPhoneHTTPServerViewController : UIViewController { 5 | 6 | } 7 | 8 | @end 9 | 10 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/iPhoneHTTPServer/Classes/iPhoneHTTPServerViewController.m: -------------------------------------------------------------------------------- 1 | #import "iPhoneHTTPServerViewController.h" 2 | 3 | 4 | @implementation iPhoneHTTPServerViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/iPhoneHTTPServer/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/CocoaHTTPServer-master-3/Samples/iPhoneHTTPServer/Default-568h@2x.png -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/iPhoneHTTPServer/iPhoneHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Samples/iPhoneHTTPServer/iPhoneHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'iPhoneHTTPServer' target in the 'iPhoneHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Vendor/CocoaAsyncSocket/About.txt: -------------------------------------------------------------------------------- 1 | The CocoaAsyncSocket project is under Public Domain license. 2 | http://code.google.com/p/cocoaasyncsocket/ 3 | 4 | The AsyncSocket project has been around since 2001 and is used in many applications and frameworks. -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master-3/Vendor/CocoaLumberjack/Extensions/README.txt: -------------------------------------------------------------------------------- 1 | This folder contains some sample formatters that may be helpful. 2 | 3 | Feel free to change them, extend them, or use them as the basis for your own custom formatter(s). 4 | 5 | More information about creating your own custom formatters can be found on the wiki: 6 | https://github.com/robbiehanson/CocoaLumberjack/wiki/CustomFormatters 7 | 8 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pbxuser 3 | *.mode1v3 4 | *.mode2v3 5 | xcuserdata 6 | *~ 7 | -------------------------------------------------------------------------------- /LocalRadio/CocoaHTTPServer-master/.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | 3 | Samples/*/build 4 | *.pbxuser 5 | *.mode1v3 6 | *.xcuserdatad 7 | -------------------------------------------------------------------------------- /LocalRadio/LocalRadio-Source/URLTextField.h: -------------------------------------------------------------------------------- 1 | // 2 | // URLTextField.h 3 | // LocalRadio 4 | // 5 | // Created by Douglas Ward on 8/13/17. 6 | // Copyright © 2017-2020 ArkPhone LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class AppDelegate; 12 | 13 | @interface URLTextField : NSTextField 14 | 15 | @property (weak) IBOutlet AppDelegate * appDelegate; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /LocalRadio/LocalRadio-Source/data_skeleton.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/LocalRadio-Source/data_skeleton.sqlite3 -------------------------------------------------------------------------------- /LocalRadio/LocalRadio-old.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/LocalRadio-old.sqlite3 -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/WP_20161221_18_05_04_Pro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/WP_20161221_18_05_04_Pro.jpg -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/WP_20161221_18_05_04_Pro.jpg 825×1250 pixels.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/WP_20161221_18_05_04_Pro.jpg 825×1250 pixels.webloc -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_128x128.png -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_128x128@2x.png -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_16x16.png -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_16x16@2x.png -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_256x256.png -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_256x256@2x.png -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_32x32.png -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_32x32@2x.png -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_512x512.png -------------------------------------------------------------------------------- /LocalRadio/Red-Radio-Icon/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Red-Radio-Icon/icon_512x512@2x.png -------------------------------------------------------------------------------- /LocalRadio/Scripts/MacPorts_Libraries/librtlsdr.0.5git.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Scripts/MacPorts_Libraries/librtlsdr.0.5git.dylib -------------------------------------------------------------------------------- /LocalRadio/Web/Monitor_Beacon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/Monitor_Beacon.mp3 -------------------------------------------------------------------------------- /LocalRadio/Web/Monitor_Beacon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/Monitor_Beacon.wav -------------------------------------------------------------------------------- /LocalRadio/Web/addcategory.html: -------------------------------------------------------------------------------- 1 | %%STORE_CATEGORY_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/apple-icon-114x114.png -------------------------------------------------------------------------------- /LocalRadio/Web/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/apple-icon-144x144.png -------------------------------------------------------------------------------- /LocalRadio/Web/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/apple-icon-152x152.png -------------------------------------------------------------------------------- /LocalRadio/Web/apple-icon-167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/apple-icon-167x167.png -------------------------------------------------------------------------------- /LocalRadio/Web/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/apple-icon-180x180.png -------------------------------------------------------------------------------- /LocalRadio/Web/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/apple-icon-57x57.png -------------------------------------------------------------------------------- /LocalRadio/Web/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/apple-icon-72x72.png -------------------------------------------------------------------------------- /LocalRadio/Web/applyaacsettings.html: -------------------------------------------------------------------------------- 1 | %%APPLY_AAC_SETTINGS_BUTTON_CLICKED_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/categories.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | %%ERROR_MESSAGE%% 6 | 7 |
8 |
9 |

LocalRadio

10 |

Categories

11 | %%CATEGORIES_TABLE%% 12 | 13 |
14 | -------------------------------------------------------------------------------- /LocalRadio/Web/customtasklistenbuttonclicked.html: -------------------------------------------------------------------------------- 1 | %%CUSTOM_TASK_LISTEN_BUTTON_CLICKED_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/deletecategory.html: -------------------------------------------------------------------------------- 1 | %%DELETE_CATEGORY_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/deletefrequency.html: -------------------------------------------------------------------------------- 1 | %%DELETE_FREQUENCY_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/devicelistenbuttonclicked.html: -------------------------------------------------------------------------------- 1 | %%DEVICE_LISTEN_BUTTON_CLICKED_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/dist/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/dist/images/favicon.png -------------------------------------------------------------------------------- /LocalRadio/Web/editcategoryitem.html: -------------------------------------------------------------------------------- 1 | %%EDIT_CATEGORY_ITEM_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/favicon.png -------------------------------------------------------------------------------- /LocalRadio/Web/favorites.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | %%ERROR_MESSAGE%% 6 | 7 |
8 |
9 |

LocalRadio

10 |

Favorites

11 | %%FAVORITES_TABLE%% 12 |
13 |
14 | 15 | -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-100.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-100.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-100.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-100.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-100.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-100italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-100italic.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-100italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-100italic.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-100italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-100italic.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-100italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-100italic.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-200.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-200.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-200.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-200.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-200.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-200italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-200italic.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-200italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-200italic.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-200italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-200italic.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-200italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-200italic.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-300.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-300.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-300.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-300.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-300italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-300italic.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-300italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-300italic.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-300italic.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-300italic.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-600.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-600.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-600.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-600.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-600italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-600italic.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-600italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-600italic.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-600italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-600italic.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-600italic.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-italic.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-italic.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-italic.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-italic.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-regular.eot -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-regular.ttf -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-regular.woff -------------------------------------------------------------------------------- /LocalRadio/Web/fonts/raleway-v11-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/fonts/raleway-v11-latin-regular.woff2 -------------------------------------------------------------------------------- /LocalRadio/Web/frequencylistenbuttonclicked.html: -------------------------------------------------------------------------------- 1 | %%LISTEN_BUTTON_CLICKED_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/Web/images/favicon.png -------------------------------------------------------------------------------- /LocalRadio/Web/insertnewfrequency.html: -------------------------------------------------------------------------------- 1 | %%INSERT_NEW_FREQUENCY_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/listen.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | %%ERROR_MESSAGE%% 5 | 6 |
7 |
8 |

LocalRadio

9 |

%%LISTEN_NAME%%

10 | %%VIEW_LISTEN%% 11 |
12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /LocalRadio/Web/listenbuttonclicked.html: -------------------------------------------------------------------------------- 1 | %%FREQUENCY_LISTEN_BUTTON_CLICKED_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/localradio_api.html: -------------------------------------------------------------------------------- 1 | %%LOCALRADIO_API_RESPONSE%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/nowplayingstatus.html: -------------------------------------------------------------------------------- 1 | %%NOW_PLAYING_STATUS_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/scannercategories.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | %%ERROR_MESSAGE%% 5 | 6 |
7 |
8 |

LocalRadio

9 |

Scanner Categories

10 | %%SCANNER_CATEGORIES_TABLE%% 11 |
12 |
13 | 14 | -------------------------------------------------------------------------------- /LocalRadio/Web/scannerlistenbuttonclicked.html: -------------------------------------------------------------------------------- 1 | %%SCANNER_LISTEN_BUTTON_CLICKED_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/storecategory.html: -------------------------------------------------------------------------------- 1 | %%ADD_CATEGORY_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/Web/storefrequency.html: -------------------------------------------------------------------------------- 1 | %%STORE_FREQUENCY_RESULT%% 2 | -------------------------------------------------------------------------------- /LocalRadio/icecast/web/silence-tone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/icecast/web/silence-tone.mp3 -------------------------------------------------------------------------------- /LocalRadio/import_dylibs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # import_dylibs.sh 4 | # SDR_Server 5 | # 6 | # Created by Douglas Ward on 5/14/17. 7 | # Copyright © 2017 ArkPhone LLC. All rights reserved. 8 | 9 | dylibbundler -b -x ./SDR_Server.app/Contents/MacOS/SDR_Server -d ./SDR_Server.app/Contents/Frameworks/ -p @executable_path/../Frameworks/ 10 | -------------------------------------------------------------------------------- /LocalRadio/libsqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/LocalRadio/libsqlite3.dylib -------------------------------------------------------------------------------- /LocalRadio/rtl-sdr-master/.travis.yml: -------------------------------------------------------------------------------- 1 | language: c 2 | compiler: 3 | - gcc 4 | - clang 5 | 6 | before_install: 7 | - sudo apt-get update -qq 8 | - sudo apt-get install -qq libusb-1.0-0-dev 9 | 10 | script: cmake . && make && sudo make install 11 | -------------------------------------------------------------------------------- /LocalRadio/rtl-sdr-master/AUTHORS: -------------------------------------------------------------------------------- 1 | Steve Markgraf 2 | Dimitri Stolnikov 3 | Hoernchen 4 | Kyle Keen 5 | -------------------------------------------------------------------------------- /LocalRadio/rtl-sdr-master/README: -------------------------------------------------------------------------------- 1 | rtl-sdr 2 | turns your Realtek RTL2832 based DVB dongle into a SDR receiver 3 | ====================================================================== 4 | 5 | For more information see: 6 | http://sdr.osmocom.org/trac/wiki/rtl-sdr 7 | -------------------------------------------------------------------------------- /LocalRadio/rtl-sdr-master/include/Makefile.am: -------------------------------------------------------------------------------- 1 | rtlsdr_HEADERS = rtl-sdr.h rtl-sdr_export.h 2 | 3 | noinst_HEADERS = reg_field.h rtlsdr_i2c.h tuner_e4k.h tuner_fc0012.h tuner_fc0013.h tuner_fc2580.h tuner_r82xx.h 4 | 5 | rtlsdrdir = $(includedir) 6 | -------------------------------------------------------------------------------- /LocalRadio/rtl-sdr-master/include/rtlsdr_i2c.h: -------------------------------------------------------------------------------- 1 | #ifndef __I2C_H 2 | #define __I2C_H 3 | 4 | uint32_t rtlsdr_get_tuner_clock(void *dev); 5 | int rtlsdr_i2c_write_fn(void *dev, uint8_t addr, uint8_t *buf, int len); 6 | int rtlsdr_i2c_read_fn(void *dev, uint8_t addr, uint8_t *buf, int len); 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /LocalRadio/rtl-sdr-master/librtlsdr.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: RTL-SDR Library 7 | Description: C Utility Library 8 | Version: @VERSION@ 9 | Cflags: -I${includedir}/ @RTLSDR_PC_CFLAGS@ 10 | Libs: -L${libdir} -lrtlsdr -lusb-1.0 11 | Libs.private: @RTLSDR_PC_LIBS@ 12 | -------------------------------------------------------------------------------- /LocalRadio/rtl-sdr-master/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /libtool.m4 2 | /lt*.m4 3 | -------------------------------------------------------------------------------- /LocalRadio/sox-build/sox note: -------------------------------------------------------------------------------- 1 | See "sox git and build notes.txt" for instructions on building it with Terminal.app, which should be done before running the Xcode build for the main app. Also see Build.md for further instructions. 2 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pbxuser 3 | *.mode1v3 4 | *.mode2v3 5 | xcuserdata 6 | *~ 7 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | 3 | Samples/*/build 4 | *.pbxuser 5 | *.mode1v3 6 | *.xcuserdatad 7 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Core/Categories/DDData.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NSData (DDData) 4 | 5 | - (NSData *)md5Digest; 6 | 7 | - (NSData *)sha1Digest; 8 | 9 | - (NSString *)hexStringValue; 10 | 11 | - (NSString *)base64Encoded; 12 | - (NSData *)base64Decoded; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Core/Responses/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPDataResponse : NSObject 6 | { 7 | NSUInteger offset; 8 | NSData *data; 9 | } 10 | 11 | - (id)initWithData:(NSData *)data; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Core/Responses/HTTPErrorResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface HTTPErrorResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | 7 | - (id)initWithErrorCode:(int)httpErrorCode; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Core/Responses/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPRedirectResponse : NSObject 6 | { 7 | NSString *redirectPath; 8 | } 9 | 10 | - (id)initWithPath:(NSString *)redirectPath; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Extensions/WebDAV/DAVConnection.h: -------------------------------------------------------------------------------- 1 | #import "HTTPConnection.h" 2 | 3 | @interface DAVConnection : HTTPConnection { 4 | id requestContentBody; 5 | NSOutputStream* requestContentStream; 6 | } 7 | @end 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Extensions/WebDAV/DELETEResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface DELETEResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | - (id) initWithFilePath:(NSString*)path; 7 | @end 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Extensions/WebDAV/PUTResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface PUTResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | - (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyData:(NSData*)body; 7 | - (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyFile:(NSString*)body; 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/DynamicServer/DynamicServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/DynamicServer/DynamicServerAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | 6 | @interface DynamicServerAppDelegate : NSObject 7 | { 8 | HTTPServer *httpServer; 9 | 10 | NSWindow *__unsafe_unretained window; 11 | } 12 | 13 | @property (unsafe_unretained) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/DynamicServer/DynamicServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'DynamicServer' target in the 'DynamicServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/DynamicServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/DynamicServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/DynamicServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DynamicServer 4 | // 5 | // Created by Robbie Hanson on 11/20/10. 6 | // Copyright 2010 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PasswdHTTPServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | 6 | @interface AppDelegate : NSObject 7 | { 8 | HTTPServer *httpServer; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PasswdHTTPServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PasswdHTTPServer/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PasswdHTTPServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | { 7 | 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PasswdHTTPServer/PasswdHTTPServer.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PasswdHTTPServer/PasswdHTTPServer.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PasswdHTTPServer/PasswdHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PasswdHTTPServer/PasswdHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PasswdHTTPServer' target in the 'PasswdHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PasswdHTTPServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PasswdHTTPServer 4 | // 5 | // Created by Robbie Hanson on 5/19/09. 6 | // Copyright Deusty Designs, LLC. 2009. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | 6 | @interface AppDelegate : NSObject 7 | { 8 | HTTPServer *httpServer; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | 7 | @end -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/PostHTTPServer.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/PostHTTPServer.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/PostHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/PostHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PostHTTPServer' target in the 'PostHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/Web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | What is 5 + 5 ? :
5 | 6 |
7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/PostHTTPServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PostHTTPServer 4 | // 5 | // Created by Robbie Hanson on 11/20/08. 6 | // Copyright Deusty Designs, LLC. 2008. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | 6 | @interface AppDelegate : NSObject 7 | { 8 | HTTPServer *httpServer; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/DDKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/DDKeychain.m -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | { 7 | 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/SecureHTTPServer.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/SecureHTTPServer.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/SecureHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/SecureHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SecureHTTPServer' target in the 'SecureHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureHTTPServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SecureHTTPServer 4 | // 5 | // Created by Robbie Hanson on 5/19/09. 6 | // Copyright Deusty Designs, LLC. 2009. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureWebSocketServer/SecureWebSocketServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureWebSocketServer/SecureWebSocketServer/DDKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureWebSocketServer/SecureWebSocketServer/DDKeychain.m -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureWebSocketServer/SecureWebSocketServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | @class MyWebSocket; 5 | 6 | @interface MyHTTPConnection : HTTPConnection 7 | { 8 | MyWebSocket *ws; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureWebSocketServer/SecureWebSocketServer/MyWebSocket.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "WebSocket.h" 3 | 4 | 5 | @interface MyWebSocket : WebSocket 6 | { 7 | 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureWebSocketServer/SecureWebSocketServer/SecureWebSocketServer-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SecureWebSocketServer' target in the 'SecureWebSocketServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SecureWebSocketServer/SecureWebSocketServer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleFileUploadServer/SimpleFileUploadServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleFileUploadServer/SimpleFileUploadServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @class HTTPServer; 5 | 6 | @interface AppDelegate : NSObject { 7 | HTTPServer *httpServer; 8 | } 9 | 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleFileUploadServer/SimpleFileUploadServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | 2 | #import "HTTPConnection.h" 3 | 4 | @class MultipartFormDataParser; 5 | 6 | @interface MyHTTPConnection : HTTPConnection { 7 | MultipartFormDataParser* parser; 8 | NSFileHandle* storeFile; 9 | 10 | NSMutableArray* uploadedFiles; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleFileUploadServer/SimpleFileUploadServer/SimpleFileUploadServer-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SimpleFileUploadServer' target in the 'SimpleFileUploadServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleFileUploadServer/SimpleFileUploadServer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleFileUploadServer/SimpleFileUploadServer/web/upload.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | %MyFiles% 8 | 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleHTTPServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | @class HTTPServer; 3 | 4 | @interface AppDelegate : NSObject 5 | { 6 | HTTPServer *httpServer; 7 | } 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleHTTPServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleHTTPServer/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleHTTPServer/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleHTTPServer/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleHTTPServer/SimpleHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleHTTPServer/SimpleHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SimpleHTTPServer' target in the 'SimpleHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleHTTPServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SimpleHTTPServer 4 | // 5 | // Created by Robert Hanson on 6/6/07. 6 | // Copyright Deusty Designs, LLC 2007. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleWebSocketServer/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleWebSocketServer/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | @class MyWebSocket; 5 | 6 | @interface MyHTTPConnection : HTTPConnection 7 | { 8 | MyWebSocket *ws; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleWebSocketServer/MyWebSocket.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "WebSocket.h" 3 | 4 | 5 | @interface MyWebSocket : WebSocket 6 | { 7 | 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleWebSocketServer/SimpleWebSocketServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleWebSocketServer/SimpleWebSocketServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SimpleWebSocketServer' target in the 'SimpleWebSocketServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/SimpleWebSocketServer/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SimpleWebSocketServer 4 | // 5 | // Created by Robbie Hanson on 4/20/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/WebDAVServer/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class HTTPServer; 4 | 5 | @interface AppDelegate : NSObject { 6 | @private 7 | HTTPServer* _httpServer; 8 | } 9 | @end 10 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/WebDAVServer/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/WebDAVServer/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/WebDAVServer/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/WebDAVServer/README.markdown -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/WebDAVServer/WebDAVServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/WebDAVServer/WebDAVServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/WebDAVServer/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main(int argc, char* argv[]) { 4 | return NSApplicationMain(argc, (const char**)argv); 5 | } 6 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/Xcode-Configurations/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Base" 2 | 3 | // Common 4 | ONLY_ACTIVE_ARCH = YES 5 | GCC_OPTIMIZATION_LEVEL = 0 6 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/Xcode-Configurations/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Base" 2 | 3 | // Common 4 | GCC_TREAT_WARNINGS_AS_ERRORS = YES 5 | GCC_PREPROCESSOR_DEFINITIONS = NDEBUG NS_BLOCK_ASSERTIONS 6 | VALIDATE_PRODUCT = YES 7 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/iPhoneHTTPServer/Classes/iPhoneHTTPServerViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface iPhoneHTTPServerViewController : UIViewController { 5 | 6 | } 7 | 8 | @end 9 | 10 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/iPhoneHTTPServer/Classes/iPhoneHTTPServerViewController.m: -------------------------------------------------------------------------------- 1 | #import "iPhoneHTTPServerViewController.h" 2 | 3 | 4 | @implementation iPhoneHTTPServerViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/iPhoneHTTPServer/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/iPhoneHTTPServer/Default-568h@2x.png -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/iPhoneHTTPServer/iPhoneHTTPServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Samples/iPhoneHTTPServer/iPhoneHTTPServer_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'iPhoneHTTPServer' target in the 'iPhoneHTTPServer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaHTTPServer-master-2/Vendor/CocoaAsyncSocket/About.txt: -------------------------------------------------------------------------------- 1 | The CocoaAsyncSocket project is under Public Domain license. 2 | http://code.google.com/p/cocoaasyncsocket/ 3 | 4 | The AsyncSocket project has been around since 2001 and is used in many applications and frameworks. -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Desktop/BenchmarkMac/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // BenchmarkMac 4 | // 5 | // Created by Robbie Hanson on 11/15/11. 6 | // 7 | 8 | #import 9 | 10 | @interface AppDelegate : NSObject 11 | 12 | @property (assign) IBOutlet NSWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Desktop/BenchmarkMac/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | #import "PerformanceTesting.h" 3 | 4 | 5 | @implementation AppDelegate 6 | 7 | @synthesize window = _window; 8 | 9 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification 10 | { 11 | [PerformanceTesting startPerformanceTests]; 12 | } 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Desktop/BenchmarkMac/BenchmarkMac-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BenchmarkMac' target in the 'BenchmarkMac' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Desktop/BenchmarkMac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Desktop/BenchmarkMac/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BenchmarkMac 4 | // 5 | // Created by Robbie Hanson on 11/15/11. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **)argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Desktop/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'BenchmarkMac' 3 | workspace '../../Demos' 4 | 5 | target :'BenchmarkMac' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Desktop/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project provides a benchmarking suite for performance testing on Mac OS X. 2 | 3 | Details of the tests, as well as sample results, are provided on the Wiki: 4 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/Performance 5 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Mobile/BenchmarkIPhone_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BenchmarkIPhone' target in the 'BenchmarkIPhone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Mobile/Classes/BenchmarkIPhoneViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface BenchmarkIPhoneViewController : UIViewController 5 | { 6 | 7 | } 8 | 9 | @end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Mobile/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'BenchmarkIPhone' 3 | workspace '../../Demos' 4 | 5 | target :'BenchmarkIPhone' do 6 | platform :ios, '8.0' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Mobile/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project provides a benchmarking suite for performance testing on the iPhone. 2 | 3 | Details of the tests, as well as sample results, are provided on the Wiki: 4 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/Performance 5 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/Benchmark/Mobile/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BenchmarkIPhone 4 | // 5 | // Created by Robbie Hanson on 5/6/10. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) { 11 | 12 | @autoreleasepool { 13 | int retVal = UIApplicationMain(argc, argv, nil, nil); 14 | return retVal; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CLI/CLI/CLI-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #endif 10 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CLI/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'CLI' 3 | workspace '../Demos' 4 | 5 | target :'CLI' do 6 | platform :osx, '10.8' 7 | 8 | pod 'CocoaLumberjack/CLI', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CaptureASL/CaptureASL/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // CaptureASL 4 | // 5 | // Created by Ernesto Rivera on 2014/03/20. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CaptureASL/CaptureASL/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // CaptureASL 4 | // 5 | // Created by Ernesto Rivera on 2014/03/20. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | - (IBAction)log:(id)sender; 14 | - (IBAction)asl_log:(UIButton *)sender; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CaptureASL/CaptureASL/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CaptureASL/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'CaptureASL' 3 | workspace '../Demos' 4 | 5 | target :'CaptureASL' do 6 | platform :ios, '8.0' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/ContextFilter/ContextFilter_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ContextFilter' target in the 'ContextFilter' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/ContextFilter/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/ContextFilter/MyContextFilter.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface MyContextFilter : NSObject 5 | { 6 | } 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/ContextFilter/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'ContextFilter' 3 | workspace '../Demos' 4 | 5 | target :'ContextFilter' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/ContextFilter/ThirdPartyFramework.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #define TP_LOG_CONTEXT 1044 4 | 5 | 6 | @interface ThirdPartyFramework : NSObject 7 | 8 | + (void)start; 9 | 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/ContextFilter/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ContextFilter 4 | // 5 | // Created by Robbie Hanson on 11/22/10. 6 | // Copyright 2010 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/CoreDataLogger/CoreDataLogger-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CoreDataLogger' target in the 'CoreDataLogger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/elements -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/layout -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/CoreDataLogger/LogEntry.m: -------------------------------------------------------------------------------- 1 | #import "LogEntry.h" 2 | 3 | 4 | @implementation LogEntry 5 | 6 | @dynamic context; 7 | @dynamic level; 8 | @dynamic message; 9 | @dynamic timestamp; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/CoreDataLogger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/CoreDataLogger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CoreDataLogger 4 | // 5 | // Created by Robbie Hanson on 3/30/11. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **)argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CoreDataLogger/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'CoreDataLogger' 3 | workspace '../Demos' 4 | 5 | target :'CoreDataLogger' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomFormatters/CustomFormattersAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface CustomFormattersAppDelegate : NSObject { 5 | NSWindow *__unsafe_unretained window; 6 | } 7 | 8 | @property (unsafe_unretained) IBOutlet NSWindow *window; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomFormatters/CustomFormatters_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CustomFormatters' target in the 'CustomFormatters' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomFormatters/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomFormatters/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'CustomFormatters' 3 | workspace '../Demos' 4 | 5 | target :'CustomFormatters' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomFormatters/TestFormatter.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | 5 | @interface TestFormatter : NSObject 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomFormatters/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CustomFormatters 4 | // 5 | // Created by Robbie Hanson on 5/13/10. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **) argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomLogLevels/CustomLogLevelsAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface CustomLogLevelsAppDelegate : NSObject { 5 | NSWindow *__unsafe_unretained window; 6 | } 7 | 8 | @property (unsafe_unretained) IBOutlet NSWindow *window; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomLogLevels/CustomLogLevels_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CustomLogLevels' target in the 'CustomLogLevels' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomLogLevels/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomLogLevels/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'CustomLogLevels' 3 | workspace '../Demos' 4 | 5 | target :'CustomLogLevels' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/CustomLogLevels/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CustomLogLevels 4 | // 5 | // Created by Robbie Hanson on 5/13/10. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **) argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/DispatchQueueLogger/DispatchQueueLogger/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // DispatchQueueLogger 4 | // 5 | // Created by Robbie Hanson on 11/8/11. 6 | // 7 | 8 | #import 9 | 10 | @interface AppDelegate : NSObject 11 | 12 | @property (unsafe_unretained) IBOutlet NSWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/DispatchQueueLogger/DispatchQueueLogger/DispatchQueueLogger-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'DispatchQueueLogger' target in the 'DispatchQueueLogger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/DispatchQueueLogger/DispatchQueueLogger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/DispatchQueueLogger/DispatchQueueLogger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DispatchQueueLogger 4 | // 5 | // Created by Robbie Hanson on 11/8/11. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **)argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/DispatchQueueLogger/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'DispatchQueueLogger' 3 | workspace '../Demos' 4 | 5 | target :'DispatchQueueLogger' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/FineGrainedLogging/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/FineGrainedLogging/FineGrainedLogging_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'FineGrainedLogging' target in the 'FineGrainedLogging' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/FineGrainedLogging/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'FineGrainedLogging' 3 | workspace '../Demos' 4 | 5 | target :'FineGrainedLogging' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/FineGrainedLogging/TimerOne.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface TimerOne : NSObject 5 | { 6 | NSTimer *foodTimer; 7 | NSTimer *sleepTimer; 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/FineGrainedLogging/TimerTwo.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface TimerTwo : NSObject 5 | { 6 | NSTimer *foodTimer; 7 | NSTimer *sleepTimer; 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/FineGrainedLogging/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FineGrainedLogging 4 | // 5 | // Created by Robbie Hanson on 5/14/10. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **) argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/GlobalLogLevel/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/GlobalLogLevel/GlobalLogLevel_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'GlobalLogLevel' target in the 'GlobalLogLevel' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/GlobalLogLevel/MyLogging.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | extern DDLogLevel ddLogLevel; 4 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/GlobalLogLevel/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'GlobalLogLevel' 3 | workspace '../Demos' 4 | 5 | target :'GlobalLogLevel' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/GlobalLogLevel/Stuff.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Stuff : NSObject { 5 | 6 | } 7 | 8 | + (void)doStuff; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/GlobalLogLevel/Stuff.m: -------------------------------------------------------------------------------- 1 | #import "Stuff.h" 2 | #import "MyLogging.h" 3 | 4 | 5 | @implementation Stuff 6 | 7 | + (void)doStuff 8 | { 9 | DDLogError(@"%@: Error", THIS_FILE); 10 | DDLogWarn(@"%@: Warn", THIS_FILE); 11 | DDLogInfo(@"%@: Info", THIS_FILE); 12 | DDLogVerbose(@"%@: Verbose", THIS_FILE); 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/GlobalLogLevel/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // GlobalLogLevel 4 | // 5 | // Created by Robbie Hanson on 2/28/11. 6 | // Copyright 2011 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/LogFileCompressor/CompressingLogFileManager.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | 5 | @interface CompressingLogFileManager : DDLogFileManagerDefault 6 | { 7 | BOOL upToDate; 8 | BOOL isCompressing; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/LogFileCompressor/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/LogFileCompressor/LogFileCompressor_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'LogFileCompressor' target in the 'LogFileCompressor' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/LogFileCompressor/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'LogFileCompressor' 3 | workspace '../Demos' 4 | 5 | target :'LogFileCompressor' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/LogFileCompressor/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project demonstrates compressing archived log files. This is done by creating a custom DDLogFileManager, which is part of the DDFileLogger. 2 | 3 | For more information, see the Wiki article: 4 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/LogFileManagement 5 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/LogFileCompressor/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LogFileCompressor 4 | // 5 | // Created by Robbie Hanson on 5/25/10. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **) argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/NonArcTest/NonArcTest/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // NonArcTest 4 | // 5 | // Created by Robbie Hanson on 11/9/11. 6 | // 7 | 8 | #import 9 | 10 | @interface AppDelegate : NSObject 11 | 12 | @property (assign) IBOutlet NSWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/NonArcTest/NonArcTest/NonArcTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'NonArcTest' target in the 'NonArcTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/NonArcTest/NonArcTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/NonArcTest/NonArcTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // NonArcTest 4 | // 5 | // Created by Robbie Hanson on 11/9/11. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **)argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/NonArcTest/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'NonArcTest' 3 | workspace '../Demos' 4 | 5 | target :'NonArcTest' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/OverflowTestMac/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/OverflowTestMac/OverflowTestMac_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'OverflowTestMac' target in the 'OverflowTestMac' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/OverflowTestMac/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'OverflowTestMac' 3 | workspace '../Demos' 4 | 5 | target :'OverflowTestMac' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/OverflowTestMac/SlowLogger.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | 5 | @interface SlowLogger : DDAbstractLogger 6 | 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/OverflowTestMac/SlowLogger.m: -------------------------------------------------------------------------------- 1 | #import "SlowLogger.h" 2 | 3 | 4 | @implementation SlowLogger 5 | 6 | - (void)logMessage:(DDLogMessage *)logMessage 7 | { 8 | [NSThread sleepForTimeInterval:0.25]; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/OverflowTestMac/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // OverflowTestMac 4 | // 5 | // Created by Robbie Hanson on 5/10/10. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **) argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/PerUserLogLevels/PerUserLogLevels/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // PerUserLogLevels 4 | // 5 | // Created by Robbie Hanson on 3/30/12. 6 | // 7 | 8 | #import 9 | 10 | @interface AppDelegate : NSObject 11 | 12 | @property (assign) IBOutlet NSWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/PerUserLogLevels/PerUserLogLevels/PerUserLogLevels-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PerUserLogLevels' target in the 'PerUserLogLevels' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/PerUserLogLevels/PerUserLogLevels/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/PerUserLogLevels/PerUserLogLevels/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PerUserLogLevels 4 | // 5 | // Created by Robbie Hanson on 3/30/12. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **)argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/PerUserLogLevels/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'PerUserLogLevels' 3 | workspace '../Demos' 4 | 5 | target :'PerUserLogLevels' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Desktop/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'RegisteredLoggingTest' 3 | workspace '../../Demos' 4 | 5 | target :'RegisteredLoggingTest' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/Lions.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Lions : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/RegisteredLoggingTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'RegisteredLoggingTest' target in the 'RegisteredLoggingTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/RegisteredLoggingTestAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface RegisteredLoggingTestAppDelegate : NSObject { 5 | NSWindow *__unsafe_unretained window; 6 | } 7 | 8 | @property (unsafe_unretained) IBOutlet NSWindow *window; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/Tigers.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Tigers : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RegisteredLoggingTest 4 | // 5 | // Created by Robbie Hanson on 9/5/11. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **)argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Mobile/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'RegisteredLoggingTest' 3 | workspace '../../Demos' 4 | 5 | target :'RegisteredLoggingTest' do 6 | platform :ios, '8.0' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/Lions.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Lions : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/RegisteredLoggingTestViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface RegisteredLoggingTestViewController : UIViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/RegisteredLoggingTestViewController.m: -------------------------------------------------------------------------------- 1 | #import "RegisteredLoggingTestViewController.h" 2 | 3 | 4 | @implementation RegisteredLoggingTestViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/Tigers.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Tigers : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RollingTestMac/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RollingTestMac/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'RollingTestMac' 3 | workspace '../Demos' 4 | 5 | target :'RollingTestMac' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RollingTestMac/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project tests the file logger by ensuring that it is properly rolling log files when it should. It is a unit test project. -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RollingTestMac/RollingTestMac_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'RollingTestMac' target in the 'RollingTestMac' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/RollingTestMac/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RollingTestMac 4 | // 5 | // Created by Robbie Hanson on 5/6/10. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **) argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/SQLiteLogger/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'SQLiteLogger' 3 | workspace '../Demos' 4 | 5 | target :'SQLiteLogger' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/SQLiteLogger/SQLiteLogger/SQLiteLogger-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SQLiteLogger' target in the 'SQLiteLogger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/SQLiteLogger/SQLiteLogger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/SQLiteLogger/SQLiteLogger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SQLiteLogger 4 | // 5 | // Created by Robbie Hanson on 3/29/11. 6 | // Copyright 2011 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Desktop/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'TestXcodeColors' 3 | workspace '../../Demos' 4 | 5 | target :'TestXcodeColors' do 6 | platform :osx, '10.8' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Desktop/TestXcodeColors/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface AppDelegate : NSObject 5 | 6 | @property (assign) IBOutlet NSWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Desktop/TestXcodeColors/TestXcodeColors-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestXcodeColors' target in the 'TestXcodeColors' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Desktop/TestXcodeColors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Desktop/TestXcodeColors/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TestXcodeColors 4 | // 5 | // Created by Robbie Hanson on 5/17/12. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **)argv); 13 | } 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Mobile/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'TextXcodeColors' 3 | workspace '../../Demos' 4 | 5 | target :'TextXcodeColors' do 6 | platform :ios, '8.0' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Mobile/TextXcodeColors/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class ViewController; 4 | 5 | 6 | @interface AppDelegate : UIResponder 7 | 8 | @property (strong, nonatomic) UIWindow *window; 9 | @property (strong, nonatomic) ViewController *viewController; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Mobile/TextXcodeColors/ViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface ViewController : UIViewController 4 | { 5 | IBOutlet UILabel *label; 6 | } 7 | 8 | @property (nonatomic, readonly) UILabel *label; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Mobile/TextXcodeColors/ViewController.m: -------------------------------------------------------------------------------- 1 | #import "ViewController.h" 2 | 3 | 4 | @implementation ViewController 5 | 6 | @synthesize label; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/TestXcodeColors/Mobile/TextXcodeColors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/UniversalApp/Classes/UniversalAppViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UniversalAppViewController.h 3 | // UniversalApp 4 | // 5 | // Created by Robbie Hanson on 7/1/10. 6 | // 7 | 8 | #import 9 | 10 | @interface UniversalAppViewController : UIViewController { 11 | 12 | } 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/UniversalApp/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/UniversalApp/Default-568h@2x.png -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/UniversalApp/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'UniversalApp' 3 | workspace '../Demos' 4 | 5 | target :'UniversalApp' do 6 | platform :ios, '8.0' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/UniversalApp/UniversalApp_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UniversalApp' target in the 'UniversalApp' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/UniversalApp/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UniversalApp 4 | // 5 | // Created by Robbie Hanson on 7/1/10. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) { 11 | 12 | @autoreleasepool { 13 | int retVal = UIApplicationMain(argc, argv, nil, nil); 14 | return retVal; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Classes/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Classes/WebServerIPhoneViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface WebServerIPhoneViewController : UIViewController { 5 | 6 | } 7 | 8 | @end 9 | 10 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Classes/WebServerIPhoneViewController.m: -------------------------------------------------------------------------------- 1 | #import "WebServerIPhoneViewController.h" 2 | 3 | 4 | @implementation WebServerIPhoneViewController 5 | 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Default-568h@2x.png -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Podfile: -------------------------------------------------------------------------------- 1 | 2 | project 'WebServerIPhone' 3 | workspace '../Demos' 4 | 5 | target :'WebServerIPhone' do 6 | platform :ios, '8.0' 7 | use_frameworks! 8 | pod 'CocoaLumberjack', :path => '../../' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Vendor/CocoaHTTPServer/Categories/DDData.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NSData (DDData) 4 | 5 | - (NSData *)md5Digest; 6 | 7 | - (NSData *)sha1Digest; 8 | 9 | - (NSString *)hexStringValue; 10 | 11 | - (NSString *)base64Encoded; 12 | - (NSData *)base64Decoded; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Vendor/CocoaHTTPServer/Responses/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPDataResponse : NSObject 6 | { 7 | NSUInteger offset; 8 | NSData *data; 9 | } 10 | 11 | - (id)initWithData:(NSData *)data; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Vendor/CocoaHTTPServer/Responses/HTTPErrorResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface HTTPErrorResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | 7 | - (id)initWithErrorCode:(int)httpErrorCode; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/Vendor/CocoaHTTPServer/Responses/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPRedirectResponse : NSObject 6 | { 7 | NSString *redirectPath; 8 | } 9 | 10 | - (id)initWithPath:(NSString *)redirectPath; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/WebServerIPhone_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'WebServerIPhone' target in the 'WebServerIPhone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/CocoaLumberjack-3.4.2/Demos/WebServerIPhone/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // WebServerIPhone 4 | // 5 | // Created by Robbie Hanson on 5/6/10. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) { 11 | 12 | @autoreleasepool { 13 | int retVal = UIApplicationMain(argc, argv, nil, nil); 14 | return retVal; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /StreamingServer/StreamingServer/StreamingServer.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UDPListener/UDPListener/UDPListener.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.inherit 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /UDPSender/UDPSender.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.inherit 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /rtl_fm_localradio/rtl_fm_localradio.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.inherit 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wfm-tools/.deps/.dirstamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/wfm-tools/.deps/.dirstamp -------------------------------------------------------------------------------- /wfm-tools/.dirstamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/wfm-tools/.dirstamp -------------------------------------------------------------------------------- /wfm-tools/Could not find liquid-dsp, but liquid-dsp is installed from MacPorts · Issue #45 ·.webarchive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/wfm-tools/Could not find liquid-dsp, but liquid-dsp is installed from MacPorts · Issue #45 ·.webarchive -------------------------------------------------------------------------------- /wfm-tools/stereodemux-liquid_wrappers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/wfm-tools/stereodemux-liquid_wrappers.o -------------------------------------------------------------------------------- /wfm-tools/stereodemux.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.inherit 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wfm-tools/stereodemux/Makefile.am: -------------------------------------------------------------------------------- 1 | bin_PROGRAMS = stereodemux 2 | stereodemux_CPPFLAGS = -std=c++11 -Wall -Wextra -Wstrict-overflow -Wshadow \ 3 | $(MACPORTS_CF) \ 4 | -Wuninitialized -pedantic $(RFLAGS) 5 | stereodemux_LDADD = $(MACPORTS_LD) -lc $(LIQUID) $(SNDFILE) 6 | stereodemux_SOURCES = stereodemux.cc ../liquid_wrappers.cc 7 | -------------------------------------------------------------------------------- /wfm-tools/stereodemux/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf --install || exit 1 3 | -------------------------------------------------------------------------------- /wfm-tools/stereodemux/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /wfm-tools/stereodemux/stereodemux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/wfm-tools/stereodemux/stereodemux -------------------------------------------------------------------------------- /wfm-tools/stereodemux/stereodemux-stereodemux.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsward2/LocalRadio/0c59257c677f2a10bc92229952a7c082c46884d3/wfm-tools/stereodemux/stereodemux-stereodemux.o --------------------------------------------------------------------------------