Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1295)

Unified Diff: src/openflow/model/openflow-switch-net-device.cc

Issue 313490043: Final updates to correct doxygen warnings for the openflow model (Closed)
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/openflow/model/openflow-switch-net-device.h ('k') | src/openflow/test/openflow-switch-test-suite.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/openflow/model/openflow-switch-net-device.cc
===================================================================
--- a/src/openflow/model/openflow-switch-net-device.cc
+++ b/src/openflow/model/openflow-switch-net-device.cc
@@ -1439,9 +1439,9 @@
}
int
-OpenFlowSwitchNetDevice::ReceiveStatsRequest (const void *oh)
+OpenFlowSwitchNetDevice::ReceiveStatsRequest (const void *msg)
{
- const ofp_stats_request *rq = (ofp_stats_request*)oh;
+ const ofp_stats_request *rq = (ofp_stats_request*)mg;
size_t rq_len = ntohs (rq->header.length);
int type = ntohs (rq->type);
int body_len = rq_len - offsetof (ofp_stats_request, body);
@@ -1483,13 +1483,13 @@
}
int
-OpenFlowSwitchNetDevice::ReceiveEchoRequest (const void *oh)
+OpenFlowSwitchNetDevice::ReceiveEchoRequest (const void *msg)
{
- return SendOpenflowBuffer (make_echo_reply ((ofp_header*)oh));
+ return SendOpenflowBuffer (make_echo_reply ((ofp_header*)msg));
}
int
-OpenFlowSwitchNetDevice::ReceiveEchoReply (const void *oh)
+OpenFlowSwitchNetDevice::ReceiveEchoReply (const void *msg)
{
return 0;
}
« no previous file with comments | « src/openflow/model/openflow-switch-net-device.h ('k') | src/openflow/test/openflow-switch-test-suite.cc » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b