eve-schema: add bittorrent-dht

pull/8113/head
Jason Ish 4 years ago committed by Victor Julien
parent 78ba17caa8
commit 66fc92276a

@ -303,6 +303,89 @@
}, },
"additionalProperties": false "additionalProperties": false
}, },
"bittorrent-dht": {
"type": "object",
"optional": true,
"properties": {
"transaction_id": {
"type": "string"
},
"client_version": {
"type": "string"
},
"request_type": {
"type": "string"
},
"request": {
"type": "object",
"additionalProperties": false,
"optional": true,
"properties": {
"id": {
"type": "string"
},
"target": {
"type": "string",
"optional": true
},
"implied_port": {
"type": "integer"
},
"info_hash": {
"type": "string",
"optional": true
},
"port": {
"type": "integer"
},
"token": {
"type": "string",
"optional": true
}
}
},
"response": {
"type": "object",
"additionalProperties": false,
"optional": true,
"properties": {
"id": {
"type": "string",
"optional": false
},
"nodes": {
"type": "string",
"optional": true
},
"token": {
"type": "string",
"optional": true
},
"values": {
"type": "array",
"optional": true,
"items": {
"type": "string"
}
}
}
},
"error": {
"type": "object",
"optional": true,
"additionalProperties": false,
"properties": {
"num": {
"type": "integer"
},
"msg": {
"type": "string"
}
}
}
},
"additionalProperties": false
},
"dcerpc": { "dcerpc": {
"type": "object", "type": "object",
"optional": true, "optional": true,
@ -3565,6 +3648,9 @@
"error": { "error": {
"type": "object", "type": "object",
"properties": { "properties": {
"bittorrent-dht": {
"$ref": "#/$defs/stats_applayer_error"
},
"dcerpc_tcp": { "dcerpc_tcp": {
"$ref": "#/$defs/stats_applayer_error" "$ref": "#/$defs/stats_applayer_error"
}, },
@ -3670,6 +3756,9 @@
"flow": { "flow": {
"type": "object", "type": "object",
"properties": { "properties": {
"bittorrent-dht": {
"type": "integer"
},
"dcerpc_tcp": { "dcerpc_tcp": {
"type": "integer" "type": "integer"
}, },
@ -3784,6 +3873,9 @@
"tx": { "tx": {
"type": "object", "type": "object",
"properties": { "properties": {
"bittorrent-dht": {
"type": "integer"
},
"dcerpc_tcp": { "dcerpc_tcp": {
"type": "integer" "type": "integer"
}, },

Loading…
Cancel
Save