Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
logcat.h
Go to the documentation of this file.
1
9#ifndef __LOGCAT_H__
10#define __LOGCAT_H__
11
12#include "wtap.h"
13
14/* The log format can be found on:
15 * https://android.googlesource.com/platform/system/core/+/master/include/log/logger.h
16 * Log format is assumed to be little-endian (Android platform).
17 */
18/* maximum size of a message payload in a log entry */
19#define LOGGER_ENTRY_MAX_PAYLOAD 4076
20
22 uint16_t len; /* length of the payload */
23 uint16_t __pad; /* no matter what, we get 2 bytes of padding */
24 int32_t pid; /* generating process's pid */
25 int32_t tid; /* generating process's tid */
26 int32_t sec; /* seconds since Epoch */
27 int32_t nsec; /* nanoseconds */
28/* char msg[0]; *//* the entry's payload */
29};
30
32 uint16_t len; /* length of the payload */
33 uint16_t hdr_size; /* sizeof(struct logger_entry_v2) */
34 int32_t pid; /* generating process's pid */
35 int32_t tid; /* generating process's tid */
36 int32_t sec; /* seconds since Epoch */
37 int32_t nsec; /* nanoseconds */
38 union {
39 /* v1: not present */
40 uint32_t euid; /* v2: effective UID of logger */
41 uint32_t lid; /* v3: log id of the payload */
42 } id;
43/* char msg[0]; *//* the entry's payload */
44};
45
46wtap_open_return_val logcat_open(wtap *wth, int *err, char **err_info);
47
48int logcat_exported_pdu_length(const uint8_t *pd);
49#endif
50
51/*
52 * Editor modelines - https://www.wireshark.org/tools/modelines.html
53 *
54 * Local variables:
55 * c-basic-offset: 4
56 * tab-width: 8
57 * indent-tabs-mode: nil
58 * End:
59 *
60 * vi: set shiftwidth=4 tabstop=8 expandtab:
61 * :indentSize=4:tabSize=8:noTabs=true:
62 */
Definition logcat.h:31
Definition logcat.h:21
Definition wtap-int.h:37