| 30176 | }; |
| 30177 | |
| 30178 | InputStream* URL::createNativeStream (const String& address, bool isPost, const MemoryBlock& postData, |
| 30179 | OpenStreamProgressCallback* progressCallback, void* progressCallbackContext, |
| 30180 | const String& headers, const int timeOutMs, StringPairArray* responseHeaders) |
| 30181 | { |
| 30182 | ScopedPointer <WebInputStream> wi (new WebInputStream (address, isPost, postData, |
| 30183 | progressCallback, progressCallbackContext, |
| 30184 | headers, timeOutMs, responseHeaders)); |
| 30185 | |
| 30186 | return wi->isError() ? nullptr : wi.release(); |
| 30187 | } |
| 30188 | |
| 30189 | namespace MACAddressHelpers |
| 30190 | { |