Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PPSi
Manage
Activity
Members
Labels
Plan
Issues
55
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
PPSi
Commits
3f32e494
Commit
3f32e494
authored
11 years ago
by
Aurelio Colosimo
Browse files
Options
Downloads
Patches
Plain Diff
fsm.c: print human-readable msg name for recv packets
Signed-off-by:
Aurelio Colosimo
<
aurelio@aureliocolosimo.it
>
parent
da6489a0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fsm.c
+2
-2
2 additions, 2 deletions
fsm.c
proto-standard/msg.c
+1
-1
1 addition, 1 deletion
proto-standard/msg.c
with
3 additions
and
3 deletions
fsm.c
+
2
−
2
View file @
3f32e494
...
...
@@ -75,10 +75,10 @@ int pp_state_machine(struct pp_instance *ppi, uint8_t *packet, int plen)
if
(
plen
)
pp_diag
(
ppi
,
frames
,
1
,
"RECV %02d bytes at %d.%09d (type %x)
\n
"
,
plen
,
"RECV %02d bytes at %d.%09d (type %x
, %s
)
\n
"
,
plen
,
(
int
)
ppi
->
last_rcv_time
.
seconds
,
(
int
)
ppi
->
last_rcv_time
.
nanoseconds
,
packet
[
0
]
&
0xf
);
packet
[
0
]
&
0xf
,
pp_msg_names
[
packet
[
0
]
&
0xf
]
);
/*
* Since all ptp frames have the same header, parse it now.
...
...
This diff is collapsed.
Click to expand it.
proto-standard/msg.c
+
1
−
1
View file @
3f32e494
...
...
@@ -326,7 +326,7 @@ void msg_unpack_delay_resp(void *buf, MsgDelayResp *resp)
htons
(
*
(
UInteger16
*
)
(
buf
+
52
));
}
const
char
const
*
pp_msg_names
[]
=
{
const
char
const
*
pp_msg_names
[
16
]
=
{
[
PPM_SYNC
]
=
"sync"
,
[
PPM_DELAY_REQ
]
=
"delay_req"
,
[
PPM_PDELAY_REQ
]
=
"pdelay_req"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment