Skip to content
Discussion options

You must be logged in to vote

It doesn't seem to be in the spec, though it was intended to be.

The TLS implementation supports that by setting the verify flag to false. It may be that the intended name for 419 is different (I don't have time to run that down now, but I think it is supposed to match the equivalent Node flag). This works in httpclient example to disable certificate verification:

const http = new device.network.http.io({ 
	...device.network.http,
	host: "www.google.com",
	port: 443,
	socket: {
		io: TLSSocket,
		TCP: device.network.http.socket,
		secure: {
			verify: false
		},
	}
});

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@phoddie
Comment options

@tve
Comment options

@phoddie
Comment options

@tve
Comment options

@phoddie
Comment options

Answer selected by tve
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants