3 * Copyright 2014, Michal Labedzki for Tieto Corporation
5 * SPDX-License-Identifier: GPL-2.0-or-later
16 /* The log format can be found on:
17 * https://android.googlesource.com/platform/system/core/+/master/include/log/logger.h
18 * Log format is assumed to be little-endian (Android platform).
20 /* maximum size of a message payload in a log entry */
21 #define LOGGER_ENTRY_MAX_PAYLOAD 4076
24 uint16_t len
; /* length of the payload */
25 uint16_t __pad
; /* no matter what, we get 2 bytes of padding */
26 int32_t pid
; /* generating process's pid */
27 int32_t tid
; /* generating process's tid */
28 int32_t sec
; /* seconds since Epoch */
29 int32_t nsec
; /* nanoseconds */
30 /* char msg[0]; *//* the entry's payload */
33 struct logger_entry_v2
{
34 uint16_t len
; /* length of the payload */
35 uint16_t hdr_size
; /* sizeof(struct logger_entry_v2) */
36 int32_t pid
; /* generating process's pid */
37 int32_t tid
; /* generating process's tid */
38 int32_t sec
; /* seconds since Epoch */
39 int32_t nsec
; /* nanoseconds */
42 uint32_t euid
; /* v2: effective UID of logger */
43 uint32_t lid
; /* v3: log id of the payload */
45 /* char msg[0]; *//* the entry's payload */
48 wtap_open_return_val
logcat_open(wtap
*wth
, int *err
, char **err_info
);
50 int logcat_exported_pdu_length(const uint8_t *pd
);
54 * Editor modelines - https://www.wireshark.org/tools/modelines.html
59 * indent-tabs-mode: nil
62 * vi: set shiftwidth=4 tabstop=8 expandtab:
63 * :indentSize=4:tabSize=8:noTabs=true: