mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
Deprecate the internal int/uint types in favor of the cstdint types they were based on
This commit is contained in:
parent
18e4976c6c
commit
54752ef9a1
218 changed files with 1331 additions and 1323 deletions
|
@ -25,7 +25,7 @@ public:
|
|||
* @param offset number of bytes from start of file at which chunk occurs.
|
||||
* @return always true
|
||||
*/
|
||||
bool DeliverChunk(const u_char* data, uint64 len, uint64 offset) override;
|
||||
bool DeliverChunk(const u_char* data, uint64_t len, uint64_t offset) override;
|
||||
|
||||
/**
|
||||
* Generates the event, if any, specified by the "stream_event" field of
|
||||
|
@ -34,7 +34,7 @@ public:
|
|||
* @param len number of bytes in the data chunk.
|
||||
* @return always true
|
||||
*/
|
||||
bool DeliverStream(const u_char* data, uint64 len) override;
|
||||
bool DeliverStream(const u_char* data, uint64_t len) override;
|
||||
|
||||
/**
|
||||
* Create a new instance of a DataEvent analyzer.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue