summaryrefslogtreecommitdiff
path: root/pcap_set_tstamp_type.3pcap.in
Commit message (Collapse)AuthorAgeFilesLines
* man: Prevent hyphenation in a few more cases. [skip ci]Denis Ovsienko2022-02-131-1/+1
| | | | Address references to pcap-timestamp, pcap-savefile and pcap-filter.
* man: Format more special constants bold. [skip ci]Denis Ovsienko2020-08-211-1/+3
| | | | | | | Some man pages used bold font for special meaning constants (e.g. -1 for infinity, 0 for false, 1 for true, NULL), but some didn't. Make the formatting consistently bold, but leave ordinary constants (number of packets in a buffer, a timeout, a buffer size) intact.
* Show correct last modified date in all man pages.Denis Ovsienko2020-02-161-1/+1
| | | | | | | | | For clarity, as before, the last modified date stands for changes more substantial than trivial editorial and formatting fixups. That, for example, would be at least a change of the described behaviour, return value, semantics or backward compatibility. [skip ci]
* Style cleanup.Guy Harris2019-11-231-2/+2
| | | | | | | | Use the BSD house style, in which, in foobar() returns 17 on success and 137 on failure. "foobar" is boldfaced but "()" isn't.
* Always return a list of supported time-stamp types.Guy Harris2019-09-081-1/+3
| | | | | | | | | | | | | In change 6e0c54a8f9640973e95ae755e6f60e1cceb7985f, we "have both the time stamp type-setting and precision-setting routines allow the default value (PCAP_TSTAMP_NONE/PCAP_TSTAMP_PRECISION_MICRO) if no list is supplied." That means that, for example, "tcpdump -J" may report "Time stamp type cannot be set", but "tcpdump -j host" is allowed. One could argue that you're not "setting" the time stamp, as "host" is the default, but it's confusing. This means that "host" will be reported as the one and only time stamp type if that's supported.
* Fix manpage reference formatting to be consistent.Daniel Miller2018-08-241-5/+5
| | | | | | | All manpage references such as pcap_create(3PCAP) will now be formatted with the identifier (e.g. "pcap_create") in **bold** and the section name (e.g. "(3PCAP)") in roman (default) face. This is how most manpages seem to be formatted and makes things more consistent.
* Add some "what if it's an earlier release" information.Guy Harris2018-08-221-1/+3
| | | | | | Expand the BACKWARD COMPATIBILITY section to either say "sorry, you can't get that with earlier releases of libpcap" or "if you need this, here's what you'd have to do".
* Add backward compatibility notes to some man pages.Denis Ovsienko2018-08-221-1/+4
| | | | | | (as suggested by Daniel Miller in GH #745) [skip ci]
* Refine references in some man pages, round 4.Denis Ovsienko2018-07-181-6/+4
| | | | [skip ci]
* fix a few typosDenis Ovsienko2017-01-251-1/+1
|
* update last modified date in man page(s)Denis Ovsienko2015-12-181-1/+1
|
* Correct return value documentation in manpages.Thomas Habets2014-12-051-1/+1
| | | | | | | Manpages: * pcap_datalink_name_to_val * pcap_set_tstamp_type * pcap_tstamp_type_name_to_val
* If the specified time stamp type isn't supported, treat that as a warning.Guy Harris2010-08-221-5/+7
|
* Add support for setting the time stamp type for a capture.Guy Harris2010-08-221-0/+63
Based on a patch from Scott Mcmillan <scott.a.mcmillan@intel.com>.