BOOLX |
typedef enum { NO, YES, NOTYET }
In networking, it is possible for operations not to either succeed or fail, but for them to be not ready to complete just yet. This is a tri-state type to convey success, failure, and pending.
- NO
- The operation has failed.
- YES
- The operation has succeeded.
- NOTYET
- The operation can't succeed yet, may never succeed, may fail, but hasn't failed yet.
(Last Updated 9/24/2004)