We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0e0bd3 commit c6182a2Copy full SHA for c6182a2
src/ipscan.ts
@@ -34,6 +34,7 @@ export const ipscan =
34
flatMap(urls => forkJoin(
35
urls.map(url => http.post(url, {
36
headers: { 'Content-Type': 'application/soap+xml; charset=utf-8;' },
37
+ family: 4, // https://github.com/nodejs/node/issues/5436#issuecomment-189600282
38
body: '<Envelope xmlns="http://www.w3.org/2003/05/soap-envelope"><Body xmlns:xsd="http://www.w3.org/2001/XMLSchema"><GetSystemDateAndTime xmlns="http://www.onvif.org/ver10/device/wsdl"/></Body></Envelope>'
39
}).pipe(
40
map(res => res.response.statusCode === 200
0 commit comments