diff options
author | Robin Krahl <guskraro@student.gu.se> | 2017-10-04 14:51:12 +0200 |
---|---|---|
committer | Robin Krahl <guskraro@student.gu.se> | 2017-10-04 14:51:12 +0200 |
commit | 014fbab3ef87b8e71444431796ac7ac9b84dee83 (patch) | |
tree | 5c33a9f3c854f2df0c8406c2bfc4936fb8310f3d /broccoli/src | |
parent | 0937e53f4a33bb9a55c4ab4cf6c31a3294cf483c (diff) | |
download | midbro-014fbab3ef87b8e71444431796ac7ac9b84dee83.tar.gz midbro-014fbab3ef87b8e71444431796ac7ac9b84dee83.tar.bz2 |
broevent: Combine the pasad-parsed script with midbro
Diffstat (limited to 'broccoli/src')
-rw-r--r-- | broccoli/src/broevent.c | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/broccoli/src/broevent.c b/broccoli/src/broevent.c index 3813270..8a74881 100644 --- a/broccoli/src/broevent.c +++ b/broccoli/src/broevent.c @@ -9,13 +9,29 @@ char *port_default = "47760"; Fifo_q * q; static void -bro_response(BroConn *conn, void *data, uint64* registers, uint64* uid) +pasad_register_received(BroConn *conn, void *data, BroRecord *record) { - add_to_queue(q,create_sensor_object(*registers,*uid)); - //printf("Received value %"PRIu64" from uid=%"PRIu64"\n",*registers,*uid); + int type = BRO_TYPE_COUNT; + uint64 *address = NULL; + uint64 *value = NULL; - conn = NULL; - data = NULL; + // TODO: handle regtype + address = bro_record_get_named_val(record, "address", &type); + if (!address) { + // TODO: handle error + return; + } + value = bro_record_get_named_val(record, "register", &type); + if (!value) { + // TODO: handle error + return; + } + + printf("Received value %"PRIu64" from uid=%"PRIu64"\n",*value,*address); + + add_to_queue(q, create_sensor_object(*value, *address)); + + printf("Added to queue.\n"); } void * @@ -36,7 +52,8 @@ bro_event_listener(void * args) bro_debug_calltrace = 0; bro_debug_messages = 0; - bro_event_registry_add(bc, "response",(BroEventFunc) bro_response, NULL); + bro_event_registry_add(bc, "pasad_register_received", + (BroEventFunc) pasad_register_received, NULL); if (! bro_conn_connect(bc)) { |