We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5539cc0 + 9ea8f48 commit 73af636Copy full SHA for 73af636
2 files changed
VERSION
@@ -1 +1 @@
1
-4.0.1
+4.1.0
util.go
@@ -18,13 +18,14 @@ import (
18
// it will try to decode as an integer (using atoi). If both methods fails it
19
// will return an error.
20
func getDeviceType(alias string) (deviceType int, err error) {
21
- var aliasMap = map[string]int{
22
- "ap": 20,
23
- "proxy": 31,
24
- "ips": 32,
25
- "ips-generic": 33,
26
- "exporter": 41,
27
- }
+ var aliasMap = map[string]int{
+ "ap": 20,
+ "proxy": 31,
+ "ips": 32,
+ "ips-generic": 33,
+ "exporter": 41,
+ "intrusion-proxy": 98,
28
+ }
29
30
// Check device type arg
31
if len(alias) == 0 {
0 commit comments