mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
1fd4b2b9fc
commit
608834eafb
@ -153,7 +153,12 @@ module.exports = function(RED) {
|
|||||||
this.brokerurl="mqtt://";
|
this.brokerurl="mqtt://";
|
||||||
}
|
}
|
||||||
if (this.broker !== "") {
|
if (this.broker !== "") {
|
||||||
this.brokerurl = this.brokerurl+this.broker+":";
|
//Check for an IPv6 address
|
||||||
|
if (/(?:^|(?<=\s))(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))(?=\s|$)/.test(this.broker)) {
|
||||||
|
this.brokerurl = this.brokerurl+"["+this.broker+"]:";
|
||||||
|
} else {
|
||||||
|
this.brokerurl = this.brokerurl+this.broker+":";
|
||||||
|
}
|
||||||
// port now defaults to 1883 if unset.
|
// port now defaults to 1883 if unset.
|
||||||
if (!this.port){
|
if (!this.port){
|
||||||
this.brokerurl = this.brokerurl+"1883";
|
this.brokerurl = this.brokerurl+"1883";
|
||||||
|
Loading…
Reference in New Issue
Block a user