diff options
author | ed <ed@FreeBSD.org> | 2012-02-12 18:29:56 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2012-02-12 18:29:56 +0000 |
commit | 23524b572c9490078007a68a1760546e22a8184d (patch) | |
tree | ac73d0fee5bb41748009d87a44b179ab6b7d87bc /share/man/man4/ng_car.4 | |
parent | f5c5ba680655abbc307ee2fa88397fc168cbdcad (diff) | |
download | FreeBSD-src-23524b572c9490078007a68a1760546e22a8184d.zip FreeBSD-src-23524b572c9490078007a68a1760546e22a8184d.tar.gz |
Globally replace u_int*_t from (non-contributed) man pages.
The reasoning behind this, is that if we are consistent in our
documentation about the uint*_t stuff, people will be less tempted to
write new code that uses the non-standard types.
I am not going to bump the man page dates, as these changes can be
considered style nits. The meaning of the man pages is unaffected.
MFC after: 1 month
Diffstat (limited to 'share/man/man4/ng_car.4')
-rw-r--r-- | share/man/man4/ng_car.4 | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/share/man/man4/ng_car.4 b/share/man/man4/ng_car.4 index a536fb7..080986e 100644 --- a/share/man/man4/ng_car.4 +++ b/share/man/man4/ng_car.4 @@ -123,15 +123,15 @@ Return current node configuration as .Vt "struct ng_car_bulkconf" .Bd -literal struct ng_car_hookconf { - u_int64_t cbs; /* Committed burst size */ - u_int64_t ebs; /* Exceeded/Peak burst size */ - u_int64_t cir; /* Committed information rate */ - u_int64_t pir; /* Peak information rate */ - u_int8_t green_action; /* Action for green packets */ - u_int8_t yellow_action; /* Action for yellow packets */ - u_int8_t red_action; /* Action for red packets */ - u_int8_t mode; /* operation mode */ - u_int8_t opt; /* mode options */ + uint64_t cbs; /* Committed burst size */ + uint64_t ebs; /* Exceeded/Peak burst size */ + uint64_t cir; /* Committed information rate */ + uint64_t pir; /* Peak information rate */ + uint8_t green_action; /* Action for green packets */ + uint8_t yellow_action; /* Action for yellow packets */ + uint8_t red_action; /* Action for red packets */ + uint8_t mode; /* operation mode */ + uint8_t opt; /* mode options */ }; /* possible actions (..._action) */ @@ -161,12 +161,12 @@ Return node statistics as .Vt "struct ng_car_bulkstats" .Bd -literal struct ng_car_hookstats { - u_int64_t passed_pkts; - u_int64_t droped_pkts; - u_int64_t green_pkts; - u_int64_t yellow_pkts; - u_int64_t red_pkts; - u_int64_t errors; + uint64_t passed_pkts; + uint64_t droped_pkts; + uint64_t green_pkts; + uint64_t yellow_pkts; + uint64_t red_pkts; + uint64_t errors; }; struct ng_car_bulkstats { |