You might be interested in the example program found at
examples/wireless/wifi-simple-ht-hidden-stations.cc. It has examples on
how to configure the 802.11n (HT) models to use or disable RTS/CTS, in
the context of a hidden terminal (where these protection mechanisms are
useful).
In the source code for that example, you can see that three PCAP and one
ASCII trace files are generated:
phy.EnablePcap ("SimpleHtHiddenStations_Ap", apDevice.Get (0));
phy.EnablePcap ("SimpleHtHiddenStations_Sta1", staDevices.Get (0));
phy.EnablePcap ("SimpleHtHiddenStations_Sta2", staDevices.Get (1));
AsciiTraceHelper ascii;
phy.EnableAsciiAll (ascii.CreateFileStream
("SimpleHtHiddenStations.tr"));
These files should show you the timings of transmission and reception of
RTS and CTS.
There are other examples in that directory that optionally enable the
use of RTS (search for 'Rts' or 'RTS' strings in those examples).
- Tom