Skip to content

Commit

Permalink
fix(coap-in): change ipv6 default to false
Browse files Browse the repository at this point in the history
Avoid issues on operating systems that do not use
 v4/v6 hybrid sockets (see #15).
  • Loading branch information
JKRhb committed Mar 18, 2021
1 parent 0d5c6cd commit fd5afb4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion coap/coap-in.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
defaults: {
name: { value: "" },
port: { value: 5683, required: true },
ipv6: { value: true, required: true },
ipv6: { value: false, required: true },
},
inputs: 0,
outputs: 0,
Expand Down
2 changes: 1 addition & 1 deletion coap/locales/de/coap-in.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"placeholder": "Name"
},
"configInputIPv6": {
"label": "IPv6 unterstützen"
"label": "UDP6-Agent verwenden"
},
"configInputPort": {
"label": "Port"
Expand Down
2 changes: 1 addition & 1 deletion coap/locales/en-US/coap-in.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"placeholder": "Name"
},
"configInputIPv6": {
"label": "Support IPv6"
"label": "Use UDP6 agent"
},
"configInputPort": {
"label": "Port"
Expand Down

0 comments on commit fd5afb4

Please sign in to comment.