diff --git a/CHANGES b/CHANGES index 1c8bd91aab..06ad4c1fa2 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,8 @@ +2.3-722 | 2015-04-20 12:59:03 -0500 + + * Remove unneeded documentation cross-referencing. (Jon Siwek) + 2.3-721 | 2015-04-20 12:47:05 -0500 * BIT-1380: Improve Broxygen output of &default expressions. diff --git a/VERSION b/VERSION index 0316e00ca0..3e69beb37a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3-721 +2.3-722 diff --git a/scripts/base/protocols/conn/thresholds.bro b/scripts/base/protocols/conn/thresholds.bro index 62558960e7..d4ae21e1ab 100644 --- a/scripts/base/protocols/conn/thresholds.bro +++ b/scripts/base/protocols/conn/thresholds.bro @@ -22,9 +22,6 @@ export { ## is_orig: If true, threshold is set for bytes from originator, otherwise for bytes from responder. ## ## Returns: T on success, F on failure. - ## - ## .. bro:see:: bytes_threshold_crossed packets_threshold_crossed set_packets_threshold - ## delete_bytes_threshold delete_packets_threshold global set_bytes_threshold: function(c: connection, threshold: count, is_orig: bool): bool; ## Sets a packet threshold for connection sizes, adding it to potentially already existing thresholds. @@ -37,9 +34,6 @@ export { ## is_orig: If true, threshold is set for packets from originator, otherwise for packets from responder. ## ## Returns: T on success, F on failure. - ## - ## .. bro:see:: bytes_threshold_crossed packets_threshold_crossed set_bytes_threshold - ## delete_bytes_threshold delete_packets_threshold global set_packets_threshold: function(c: connection, threshold: count, is_orig: bool): bool; ## Deletes a byte threshold for connection sizes. @@ -51,9 +45,6 @@ export { ## is_orig: If true, threshold is removed for packets from originator, otherwhise for packets from responder. ## ## Returns: T on success, F on failure. - ## - ## .. bro:see:: bytes_threshold_crossed packets_threshold_crossed set_bytes_threshold set_packets_threshold - ## delete_packets_threshold global delete_bytes_threshold: function(c: connection, threshold: count, is_orig: bool): bool; ## Deletes a packet threshold for connection sizes. @@ -65,9 +56,6 @@ export { ## is_orig: If true, threshold is removed for packets from originator, otherwise for packets from responder. ## ## Returns: T on success, F on failure. - ## - ## .. bro:see:: bytes_threshold_crossed packets_threshold_crossed set_bytes_threshold set_packets_threshold - ## delete_bytes_threshold global delete_packets_threshold: function(c: connection, threshold: count, is_orig: bool): bool; ## Generated for a connection that crossed a set byte threshold @@ -77,9 +65,6 @@ export { ## threshold: the threshold that was set ## ## is_orig: True if the threshold was crossed by the originator of the connection - ## - ## .. bro:see:: packets_threshold_crossed set_bytes_threshold set_packets_threshold - ## delete_bytes_threshold delete_packets_threshold global bytes_threshold_crossed: event(c: connection, threshold: count, is_orig: bool); ## Generated for a connection that crossed a set byte threshold @@ -89,9 +74,6 @@ export { ## threshold: the threshold that was set ## ## is_orig: True if the threshold was crossed by the originator of the connection - ## - ## .. bro:see:: bytes_threshold_crossed set_bytes_threshold set_packets_threshold - ## delete_bytes_threshold delete_packets_threshold global packets_threshold_crossed: event(c: connection, threshold: count, is_orig: bool); }