Commit Graph

9902 Commits

Author SHA1 Message Date
John Abraham
898db05c5a Red Queue 2011-12-05 19:05:39 -05:00
Nicola Baldo
d39080c728 updated helpers seqdiag 2011-12-05 21:38:12 +01:00
Nicola Baldo
cc3e583a2a LTE doc release number updated 2011-12-05 21:35:40 +01:00
Nicola Baldo
665eace3ea renamed EpsTftClassifier --> EpcTftClassifier 2011-12-05 21:30:58 +01:00
Nicola Baldo
cde6e5076b renamed LteTft --> EpcTft 2011-12-05 21:27:44 +01:00
Nicola Baldo
bbf04d7695 renamed LteMacTag --> LteRadioBearerTag 2011-12-05 21:24:51 +01:00
Nicola Baldo
17854f46ca RlcStatsCalculator --> RadioBearerStatsCalculator 2011-12-05 21:19:59 +01:00
Nicola Baldo
744f8bc2b1 renamed LenaHelper --> LteHelper 2011-12-05 21:13:53 +01:00
Nicola Baldo
91ab4937a7 merge 2011-12-05 20:36:03 +01:00
Nicola Baldo
8a26d431c1 updated lte-user.rst 2011-12-05 20:31:24 +01:00
Nicola Baldo
4a8b5983c2 merge 2011-12-05 19:28:47 +01:00
Nicola Baldo
4768ef5a01 resized one more figure 2011-12-05 19:27:42 +01:00
Nicola Baldo
944a5a91e8 updated lte-testing.rst 2011-12-05 19:20:19 +01:00
Manuel Requena
55522abbd4 Fix unused variable 2011-12-05 18:19:10 +01:00
Nicola Baldo
f24a608727 rescaled figures in LTE doc 2011-12-05 18:05:11 +01:00
Nicola Baldo
6dc4bbea0d fixed some sphinx errors in the docs 2011-12-05 17:10:22 +01:00
John Abraham
a53be62d01 RED 2011-12-05 09:39:55 -05:00
John Abraham
4824860f48 Index: src/network/examples/red-tests.cc
===================================================================
new file mode 100644
2011-12-05 09:39:28 -05:00
Manuel Requena
3c380cdfb6 Add support for AM RLC in LenaHelper 2011-12-05 14:34:24 +01:00
Manuel Requena
6a3715c301 merge AM RLC entity 2011-12-05 13:06:37 +01:00
Manuel Requena
4916374c82 Add tests for AM RLC entity 2011-12-05 13:00:14 +01:00
Manuel Requena
02afc109f9 Add AM RLC entity 2011-12-05 12:58:34 +01:00
Manuel Requena
63c4a669b9 Add AM RLC header 2011-12-05 12:57:24 +01:00
Manuel Requena
0cb92d9d7a Add support for AM RLC entity 2011-12-05 12:10:14 +01:00
Adrian S Tam
300b3cd758 Advance m_nextTxSequence upon retransmit after RTO (fixes bug 1112) 2011-12-03 15:35:47 -05:00
Adrian S Tam
89019eabf5 Send ACK to some out-of-order packets (fixes bug 1112 and part of 1256) 2011-12-03 14:02:19 -05:00
Nicola Baldo
0519afe239 wrote EPC testing documentation 2011-12-02 20:09:09 +01:00
Nicola Baldo
d63c9182ed removed spurious reference 2011-12-02 19:43:12 +01:00
Nicola Baldo
9a00637a9a merge 2011-12-02 19:34:46 +01:00
Nicola Baldo
16ed278430 merge 2011-12-02 19:26:28 +01:00
Nicola Baldo
e799dbb1ce updated LTE-EPC design documentation 2011-12-02 19:15:37 +01:00
Jaume Nin
67f401c412 Perl script to run a set of simulations using lena-simple-epc 2011-12-02 16:53:55 +01:00
Jaume Nin
7a5ebed9ce Profiling plots and results ready for M4 delivery 2011-12-02 16:33:07 +01:00
Nicola Baldo
62b37620e9 merge 2011-12-02 13:55:22 +01:00
Nicola Baldo
f65c09f10b wrote EPC design doc 2011-12-02 13:53:25 +01:00
Adrian S Tam
d349afb5e4 TCP's attribute variables are initialized in constructor (mutes valgrind) 2011-12-01 21:41:16 -05:00
mmiozzo
bab53c514c Remove BufferSizeLevelBsr table in LteUeMac, moved to lte-common 2011-12-01 12:25:45 +01:00
mmiozzo
ab01962854 Transmission queue head-of-line delay and queue size at MAC Scheduler 2011-12-01 11:38:27 +01:00
Adrian S Tam
af8ae01917 Mixed bugfixes on TCP, closes bug 1166, 1227, 1242.
1. Make connection count (m_cnCount) a separate variable from the number of
   connection retries (m_cnRetries), so that the number of connection retries
   can be cloned without affecting the number of connections to be made in the
   cloned sockets.
2. There was a case that the m_highTxMark was mistaken as m_nextTxSequence
3. Update m_lastRtt correctly, fixes bug 1242
4. The endpoint allocation/deallocation is rewritten so that the endpoint
   remembers the correct peer's address and it is deleted upon close.
   RecvFrom() call now use the data in endpoint to return the peer's address,
   and the socket closes nicely.
5. TcpL4Protocol::m_sockets now holds a complete list of all existing sockets
6. RST packet is sent before CloseAndNotify() is called, so that m_endPoint is
   not yet destroyed, fixes bug 1166
7. Fix cwnd deflation bug in partial ACK handling in TcpNewReno
8. Created attributes for fast retransmit threshold (m_retxThresh) and max
   advertised window size (m_maxWinSize)
9. Refactor SendPendingData() and DoRetransmit(), created SendDataPacket()
10. Call NotifySend() after connection established in ProcessSynSent() and
    ProcessSynRcvd()
11. Defines new flags in TcpHeader: ECE and CWR (see RFC3168)
12. Prepared hooks for TCP option handling
13. Code tidy up
14. Fix the definition of out-of-order packets
15. TCP can now move from TIME_WAIT state to CLOSED state after 2*MSL
16. Implemented limited transmit (RFC3042) in TcpNewReno, c.f. bug 1227
17. Added Raj's email to the preamble, as TcpSocketBase was modified from
    TcpSocketImpl.
2011-12-01 04:53:20 -05:00
John Abraham
912d8bbf6e NetAnim: typos and style changes 2011-11-30 19:16:09 -05:00
John Abraham
e39f1ebe10 NetAnim: One time initialization, fixes for long duration runs 2011-11-30 19:11:19 -05:00
Nicola Baldo
e26686b479 revised doc structure 2011-11-30 18:27:05 +01:00
Nicola Baldo
1220f0728c added missing doc file 2011-11-30 13:35:22 +01:00
Nicola Baldo
8cd89b9d00 merge 2011-11-30 13:29:03 +01:00
Nicola Baldo
0d28b7b545 added figures for M4 design doc 2011-11-30 13:28:39 +01:00
Jaume Nin
6f8d457b67 Merge 2011-11-30 11:21:01 +01:00
Jaume Nin
325c82b206 Name refactoring of example simulation scripts 2011-11-30 11:20:49 +01:00
Jaume Nin
4fbb036109 Fix UL RLC traces 2011-11-29 18:14:02 +01:00
Nicola Baldo
888faf4016 merge 2011-11-29 16:42:59 +01:00
Nicola Baldo
84cf9ec980 make RlcSm send repeated buffer status reports 2011-11-29 16:36:48 +01:00