Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
86a72c4d
Commit
86a72c4d
authored
Mar 01, 2016
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wireshark, some message types added
parent
e1f451da
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
src/tools/wireshark/packet-qcom.c
src/tools/wireshark/packet-qcom.c
+9
-0
src/tools/wireshark/pwr_def.h
src/tools/wireshark/pwr_def.h
+16
-0
No files found.
src/tools/wireshark/packet-qcom.c
View file @
86a72c4d
...
...
@@ -1594,6 +1594,9 @@ dissect_qcom(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case
mh_eMsg_HandlerSync
:
strcpy
(
info
,
"HandlerSync"
);
break
;
case
mh_eMsg_HandlerAlarmStatus
:
strcpy
(
info
,
"HandlerAlarmStatus"
);
break
;
case
mh_eMsg_OutunitAck
:
strcpy
(
info
,
"OutunitAck"
);
break
;
...
...
@@ -1612,6 +1615,12 @@ dissect_qcom(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case
mh_eMsg_OutunitSync
:
strcpy
(
info
,
"OutunitSync"
);
break
;
case
mh_eMsg_OutunitClear
:
strcpy
(
info
,
"OutunitClear"
);
break
;
case
mh_eMsg_OutunitAlarmReq
:
strcpy
(
info
,
"OutunitAlarmReq"
);
break
;
case
mh_eMsg_ProcDown
:
strcpy
(
info
,
"ProcDown"
);
break
;
...
...
src/tools/wireshark/pwr_def.h
View file @
86a72c4d
...
...
@@ -10,6 +10,14 @@ typedef enum {
eEvent_
}
eEvent
;
#define pwr_Bit(b) (1<<b)
#define mSeg__ 0
#define mSeg_first pwr_Bit(3)
#define mSeg_middle pwr_Bit(4)
#define mSeg_last pwr_Bit(5)
#define mSeg_single (mSeg_first|mSeg_middle|mSeg_last)
#define mSeg_sequence (mSeg_first|mSeg_middle|mSeg_last)
#define mSeg_bcast pwr_Bit(8)
/* From rt_qcom.h */
...
...
@@ -95,6 +103,11 @@ enum net_eMsg {
net_eMsg_fileList
,
net_eMsg_fileListR
,
net_eMsg_getCircBuffer
,
net_eMsg_getCircBufferR
,
net_eMsg_updateCircBuffer
,
net_eMsg_updateCircBufferR
,
net_eMsg_
,
/* Not a valid message */
net_eMsg_volumes7
,
/* Version 7. Internal only */
...
...
@@ -119,6 +132,7 @@ enum mh_eMsg {
mh_eMsg_HandlerDisconnect
=
10
,
mh_eMsg_HandlerHello
=
11
,
mh_eMsg_HandlerSync
=
12
,
mh_eMsg_HandlerAlarmStatus
=
13
,
mh_eMsg_OutunitAck
=
15
,
mh_eMsg_OutunitBlock
=
16
,
...
...
@@ -126,6 +140,8 @@ enum mh_eMsg {
mh_eMsg_OutunitHello
=
19
,
mh_eMsg_OutunitInfo
=
20
,
mh_eMsg_OutunitSync
=
21
,
mh_eMsg_OutunitClear
=
22
,
mh_eMsg_OutunitAlarmReq
=
23
,
mh_eMsg_ProcDown
=
24
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment