[BUILD] replaced u_int32_t with unsigned int.
Linux and BSD know about u_int32_t, while Solaris knows about uint32_t. This is getting boring and unsigned int perfectly fits the goal for the moment. Further investigation will be performed anyway.
This commit is contained in:
parent
7d67768e27
commit
aad2e49034
|
@ -59,7 +59,7 @@ struct chunk {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct buffer {
|
struct buffer {
|
||||||
u_int32_t flags; /* BF_* */
|
unsigned int flags; /* BF_* */
|
||||||
struct timeval rex; /* expiration date for a read */
|
struct timeval rex; /* expiration date for a read */
|
||||||
struct timeval wex; /* expiration date for a write */
|
struct timeval wex; /* expiration date for a write */
|
||||||
struct timeval cex; /* expiration date for a connect */
|
struct timeval cex; /* expiration date for a connect */
|
||||||
|
|
Loading…
Reference in New Issue