Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Simonstrator
PeerfactSim.KOM
Commits
4cdbe8c9
Commit
4cdbe8c9
authored
Nov 24, 2015
by
Björn Richerzhagen
Browse files
Applied queue fix in 802.11 mac (discovered by RK)
parent
aa5a15ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/de/tud/kom/p2psim/impl/linklayer/mac/wifi/Ieee80211AdHocMac.java
View file @
4cdbe8c9
...
...
@@ -288,10 +288,9 @@ public class Ieee80211AdHocMac extends AbstractMacLayer {
* reseted to 0.
*/
protected
void
sendNextMessage
()
{
toSend
=
null
;
toSend
=
getQueueHead
()
;
retryCounter
=
0
;
if
(
getQueueSize
()
>
0
)
{
toSend
=
getQueueHead
();
if
(
toSend
!=
null
)
{
sendMessage
();
}
}
...
...
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