diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2010-12-19 10:35:14 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2010-12-19 10:35:14 +0300 |
commit | aff9ec94d82bb46235da0b4be1b2e5e9c9dafbc2 (patch) | |
tree | abda301fed7d9851727e5fdd10d7635b6eb3d6cb /accel-pptpd/triton | |
parent | e8507d40aa9d55eb3af6196584bf3118d4f08050 (diff) | |
download | accel-ppp-aff9ec94d82bb46235da0b4be1b2e5e9c9dafbc2.tar.gz accel-ppp-aff9ec94d82bb46235da0b4be1b2e5e9c9dafbc2.zip |
cli: shutdown cancel command
Diffstat (limited to 'accel-pptpd/triton')
-rw-r--r-- | accel-pptpd/triton/triton.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/accel-pptpd/triton/triton.h b/accel-pptpd/triton/triton.h index d61253b..799560b 100644 --- a/accel-pptpd/triton/triton.h +++ b/accel-pptpd/triton/triton.h @@ -52,17 +52,17 @@ struct conf_sect_t struct triton_stat_t { - uint32_t mempool_allocated; - uint32_t mempool_available; - uint32_t thread_count; - uint32_t thread_active; - uint32_t context_count; - uint32_t context_sleeping; - uint32_t context_pending; - uint32_t md_handler_count; - uint32_t md_handler_pending; - uint32_t timer_count; - uint32_t timer_pending; + unsigned int mempool_allocated; + unsigned int mempool_available; + unsigned int thread_count; + unsigned int thread_active; + unsigned int context_count; + unsigned int context_sleeping; + unsigned int context_pending; + unsigned int md_handler_count; + unsigned int md_handler_pending; + unsigned int timer_count; + unsigned int timer_pending; time_t start_time; }; |