mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
Bump pre-commit hooks
This commit is contained in:
parent
f5a76c1aed
commit
26d04fd9fc
13 changed files with 22 additions and 19 deletions
|
@ -3,9 +3,12 @@
|
||||||
#
|
#
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/mirrors-clang-format
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
||||||
rev: 'v13.0.0'
|
rev: 'v17.0.3'
|
||||||
hooks:
|
hooks:
|
||||||
- id: clang-format
|
- id: clang-format
|
||||||
|
types_or:
|
||||||
|
- "c"
|
||||||
|
- "c++"
|
||||||
|
|
||||||
- repo: https://github.com/maxwinterstein/shfmt-py
|
- repo: https://github.com/maxwinterstein/shfmt-py
|
||||||
rev: v3.7.0.1
|
rev: v3.7.0.1
|
||||||
|
@ -14,7 +17,7 @@ repos:
|
||||||
args: ["-w", "-i", "4", "-ci"]
|
args: ["-w", "-i", "4", "-ci"]
|
||||||
|
|
||||||
- repo: https://github.com/google/yapf
|
- repo: https://github.com/google/yapf
|
||||||
rev: v0.40.0
|
rev: v0.40.2
|
||||||
hooks:
|
hooks:
|
||||||
- id: yapf
|
- id: yapf
|
||||||
|
|
||||||
|
@ -25,7 +28,7 @@ repos:
|
||||||
exclude: '^auxil/.*$'
|
exclude: '^auxil/.*$'
|
||||||
|
|
||||||
- repo: https://github.com/crate-ci/typos
|
- repo: https://github.com/crate-ci/typos
|
||||||
rev: v1.16.8
|
rev: v1.16.21
|
||||||
hooks:
|
hooks:
|
||||||
- id: typos
|
- id: typos
|
||||||
exclude: '^(.typos.toml|src/SmithWaterman.cc|testing/.*|auxil/.*|scripts/base/frameworks/files/magic/.*|CHANGES)$'
|
exclude: '^(.typos.toml|src/SmithWaterman.cc|testing/.*|auxil/.*|scripts/base/frameworks/files/magic/.*|CHANGES)$'
|
||||||
|
|
|
@ -154,7 +154,7 @@ int Base64Converter::Decode(int len, const char* data, int* pblen, char** pbuf)
|
||||||
*buf++ = char((bit32 >> 8) & 0xff);
|
*buf++ = char((bit32 >> 8) & 0xff);
|
||||||
|
|
||||||
if ( --num_octets >= 0 )
|
if ( --num_octets >= 0 )
|
||||||
*buf++ = char((bit32)&0xff);
|
*buf++ = char((bit32) & 0xff);
|
||||||
|
|
||||||
if ( base64_padding > 0 )
|
if ( base64_padding > 0 )
|
||||||
base64_after_padding = 1;
|
base64_after_padding = 1;
|
||||||
|
|
|
@ -185,8 +185,8 @@ bool DbgBreakpoint::Reset() {
|
||||||
case BP_STMT:
|
case BP_STMT:
|
||||||
case BP_LINE:
|
case BP_LINE:
|
||||||
plr.type = PLR_FUNCTION;
|
plr.type = PLR_FUNCTION;
|
||||||
//### How to deal with wildcards?
|
// ### How to deal with wildcards?
|
||||||
//### perhaps save user choices?--tough...
|
// ### perhaps save user choices?--tough...
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ public:
|
||||||
|
|
||||||
// Temporary state: vanishes when execution resumes.
|
// Temporary state: vanishes when execution resumes.
|
||||||
|
|
||||||
//### Umesh, why do these all need to be public? -- Vern
|
// ### Umesh, why do these all need to be public? -- Vern
|
||||||
|
|
||||||
// Which frame we're looking at; 0 = the innermost frame.
|
// Which frame we're looking at; 0 = the innermost frame.
|
||||||
int curr_frame_idx;
|
int curr_frame_idx;
|
||||||
|
|
|
@ -113,7 +113,7 @@ public:
|
||||||
if ( key_size <= 8 ) {
|
if ( key_size <= 8 ) {
|
||||||
memcpy(key_here, arg_key, key_size);
|
memcpy(key_here, arg_key, key_size);
|
||||||
if ( ! copy_key )
|
if ( ! copy_key )
|
||||||
delete[](char*) arg_key; // own the arg_key, now don't need it.
|
delete[] (char*)arg_key; // own the arg_key, now don't need it.
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if ( copy_key ) {
|
if ( copy_key ) {
|
||||||
|
@ -584,7 +584,7 @@ public:
|
||||||
v = table[position].value;
|
v = table[position].value;
|
||||||
table[position].value = val;
|
table[position].value = val;
|
||||||
if ( ! copy_key )
|
if ( ! copy_key )
|
||||||
delete[](char*) key;
|
delete[] (char*)key;
|
||||||
|
|
||||||
if ( iterators && ! iterators->empty() )
|
if ( iterators && ! iterators->empty() )
|
||||||
// need to set new v for iterators too.
|
// need to set new v for iterators too.
|
||||||
|
|
4
src/IP.h
4
src/IP.h
|
@ -307,8 +307,8 @@ public:
|
||||||
delete ip6_hdrs;
|
delete ip6_hdrs;
|
||||||
|
|
||||||
if ( del ) {
|
if ( del ) {
|
||||||
delete[](struct ip*) ip4;
|
delete[] (struct ip*)ip4;
|
||||||
delete[](struct ip6_hdr*) ip6;
|
delete[] (struct ip6_hdr*)ip6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
#include "zeek/ScannedFile.h"
|
#include "zeek/ScannedFile.h"
|
||||||
#include "zeek/plugin/Manager.h"
|
#include "zeek/plugin/Manager.h"
|
||||||
|
|
||||||
//#define MATCHER_PRINT_STATS
|
// #define MATCHER_PRINT_STATS
|
||||||
|
|
||||||
// Parser interface:
|
// Parser interface:
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ namespace analyzer::bittorrent {
|
||||||
|
|
||||||
// If the following is defined, then the analyzer will store all of
|
// If the following is defined, then the analyzer will store all of
|
||||||
// the headers seen in tracker messages.
|
// the headers seen in tracker messages.
|
||||||
//#define BTTRACKER_STORE_HEADERS 1
|
// #define BTTRACKER_STORE_HEADERS 1
|
||||||
|
|
||||||
namespace detail {
|
namespace detail {
|
||||||
|
|
||||||
|
|
|
@ -1520,8 +1520,8 @@ void DNS_Interpreter::SendReplyOrRejectEvent(detail::DNS_MsgInfo* msg, EventHand
|
||||||
}
|
}
|
||||||
|
|
||||||
DNS_MsgInfo::DNS_MsgInfo(DNS_RawMsgHdr* hdr, int arg_is_query) {
|
DNS_MsgInfo::DNS_MsgInfo(DNS_RawMsgHdr* hdr, int arg_is_query) {
|
||||||
//### Need to fix alignment if hdr is misaligned (not on a short
|
// ### Need to fix alignment if hdr is misaligned (not on a short
|
||||||
// boundary).
|
// boundary).
|
||||||
unsigned short flags = ntohs(hdr->flags);
|
unsigned short flags = ntohs(hdr->flags);
|
||||||
|
|
||||||
QR = (flags & 0x8000) != 0;
|
QR = (flags & 0x8000) != 0;
|
||||||
|
|
|
@ -232,7 +232,7 @@ void TelnetEnvironmentOption::RecvSubOption(u_char* data, int len) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( data[0] == ENVIRON_SEND )
|
if ( data[0] == ENVIRON_SEND )
|
||||||
//### We should track the dialog and make sure both sides agree.
|
// ### We should track the dialog and make sure both sides agree.
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if ( data[0] != ENVIRON_IS && data[0] != ENVIRON_INFO ) {
|
if ( data[0] != ENVIRON_IS && data[0] != ENVIRON_INFO ) {
|
||||||
|
|
|
@ -206,7 +206,7 @@ public:
|
||||||
bool CheckHistory(uint32_t mask, char code);
|
bool CheckHistory(uint32_t mask, char code);
|
||||||
void AddHistory(char code);
|
void AddHistory(char code);
|
||||||
|
|
||||||
//### combine into a set of flags:
|
// ### combine into a set of flags:
|
||||||
EndpointState state, prev_state;
|
EndpointState state, prev_state;
|
||||||
TCP_Endpoint* peer;
|
TCP_Endpoint* peer;
|
||||||
TCP_Reassembler* contents_processor;
|
TCP_Reassembler* contents_processor;
|
||||||
|
|
|
@ -205,7 +205,7 @@ bool ReaderBackend::OnFinish(double network_time) {
|
||||||
for ( unsigned int i = 0; i < num_fields; i++ )
|
for ( unsigned int i = 0; i < num_fields; i++ )
|
||||||
delete (fields[i]);
|
delete (fields[i]);
|
||||||
|
|
||||||
delete[](fields);
|
delete[] (fields);
|
||||||
fields = nullptr;
|
fields = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -140,7 +140,7 @@ streamsize Binary::GetChunk(char** chunk) {
|
||||||
streamsize bytes_read = in->gcount();
|
streamsize bytes_read = in->gcount();
|
||||||
|
|
||||||
if ( ! bytes_read ) {
|
if ( ! bytes_read ) {
|
||||||
delete[] * chunk;
|
delete[] *chunk;
|
||||||
*chunk = nullptr;
|
*chunk = nullptr;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue