- Timestamp:
- 03/23/10 11:42:16 (12 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 6a5b8a4
- Parents:
- 2b4316b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/libtrace.h.in
r30892b0 r0d1c9cf 293 293 }; 294 294 295 /* RT protocol packet types */295 /** RT protocol packet types */ 296 296 typedef enum { 297 297 TRACE_RT_HELLO =1, /**< Connection accepted */ … … 1131 1131 1132 1132 /** Construct a libtrace packet from a buffer containing the packet payload. 1133 * @param packet[in,out]Libtrace Packet object to update with the new1133 * @param[in,out] packet Libtrace Packet object to update with the new 1134 1134 * data. 1135 1135 * @param linktype The linktype of the packet data. … … 1439 1439 1440 1440 /** Gets a pointer to the payload following a link header 1441 * @param ipA pointer to the link layer header1441 * @param linkptr A pointer to the link layer header 1442 1442 * @param linktype The linktype of the link header being examined 1443 1443 * @param[out] type An output variable for the ethernet type … … 1902 1902 /** Seek within an input trace to a time specified as an ERF timestamp 1903 1903 * @param trace The input trace to seek within 1904 * @param t vThe time to seek to, as an ERF timestamp1904 * @param ts The time to seek to, as an ERF timestamp 1905 1905 * 1906 1906 * @return 0 on success, -1 if the seek fails. Use trace_perror() to determine … … 1957 1957 * truncation. 1958 1958 * 1959 * @note trace_get_wire_length \em {includes}the Frame Check Sequence. This is1959 * @note trace_get_wire_length \em includes the Frame Check Sequence. This is 1960 1960 * different behaviour compared to most PCAP-based tools. 1961 1961 * … … 2229 2229 * MPDU was received by the MAC. 2230 2230 * 2231 * @param link The wireless meta header2231 * @param linkptr The wireless meta header 2232 2232 * @param linktype The linktype of the wireless meta header passed in 2233 2233 * @param[out] tsft The value of the timer synchronisation function. … … 2239 2239 /** Get the wireless data rate 2240 2240 * 2241 * @param link The wireless meta header2241 * @param linkptr The wireless meta header 2242 2242 * @param linktype The linktype of the wireless meta header passed in 2243 2243 * @param[out] rate The data-rate of the frame in units of 500kbps … … 2248 2248 2249 2249 /** Get the wireless channel frequency 2250 * @param link The wireless meta header2250 * @param linkptr The wireless meta header 2251 2251 * @param linktype The linktype of the wireless meta header passed in 2252 2252 * @param[out] freq The frequency in MHz of the channel the frame was … … 2258 2258 2259 2259 /** Get the wireless signal strength in dBm 2260 * @param link The wireless meta header2260 * @param linkptr The wireless meta header 2261 2261 * @param linktype The linktype of the wireless meta header passed in 2262 2262 * @param[out] strength The RF signal power at the antenna, in dB difference … … 2268 2268 2269 2269 /** Get the wireless noise strength in dBm 2270 * @param link The wireless meta header2270 * @param linkptr The wireless meta header 2271 2271 * @param linktype The linktype of the wireless meta header passed in 2272 2272 * @param[out] strength The RF noise power at the antenna, in dB difference … … 2278 2278 2279 2279 /** Get the wireless signal strength in dB 2280 * @param link The wireless meta header2280 * @param linkptr The wireless meta header 2281 2281 * @param linktype The linktype of the wireless meta header passed in 2282 2282 * @param[out] strength The RF signal power at the antenna, in dB difference … … 2288 2288 2289 2289 /** Get the wireless noise strength in dB 2290 * @param link The wireless meta header2290 * @param linkptr The wireless meta header 2291 2291 * @param linktype The linktype of the wireless meta header passed in 2292 2292 * @param[out] strength The RF noise power at the antenna, in dB difference … … 2298 2298 2299 2299 /** Get the wireless transmit attenuation 2300 * @param link The wireless meta header2300 * @param linkptr The wireless meta header 2301 2301 * @param linktype The linktype of the wireless meta header passed in 2302 2302 * @param[out] attenuation The transmit power as a unitless distance from … … 2309 2309 2310 2310 /** Get the wireless transmit attenuation in dB 2311 * @param link The wireless meta header2311 * @param linkptr The wireless meta header 2312 2312 * @param linktype The linktype of the wireless meta header passed in 2313 2313 * @param[out] attenuation The transmit power as dB difference from maximum … … 2319 2319 2320 2320 /** Get the wireless transmit power in dBm 2321 * @param link The wireless meta header2321 * @param linkptr The wireless meta header 2322 2322 * @param linktype The linktype of the wireless meta header passed in 2323 2323 * @param[out] txpower The transmit power as dB from a 1mW reference. This is … … 2329 2329 2330 2330 /** Get the wireless antenna 2331 * @param link The wireless meta header2331 * @param linkptr The wireless meta header 2332 2332 * @param linktype The linktype of the wireless meta header passed in 2333 2333 * @param[out] antenna The antenna that was used to transmit or receive the
Note: See TracChangeset
for help on using the changeset viewer.