diff options
Diffstat (limited to 'src/microspdy/structures.h')
-rw-r--r-- | src/microspdy/structures.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/microspdy/structures.h b/src/microspdy/structures.h index 45e81c3b..ff4c47ff 100644 --- a/src/microspdy/structures.h +++ b/src/microspdy/structures.h | |||
@@ -739,9 +739,9 @@ struct SPDY_Session | |||
739 | 739 | ||
740 | /** | 740 | /** |
741 | * Last time this connection had any activity | 741 | * Last time this connection had any activity |
742 | * (reading or writing). | 742 | * (reading or writing). In milliseconds. |
743 | */ | 743 | */ |
744 | time_t last_activity; | 744 | unsigned long long last_activity; |
745 | 745 | ||
746 | /** | 746 | /** |
747 | * Socket for this connection. Set to -1 if | 747 | * Socket for this connection. Set to -1 if |
@@ -918,10 +918,10 @@ struct SPDY_Daemon | |||
918 | SPDYF_IODeinit fio_deinit; | 918 | SPDYF_IODeinit fio_deinit; |
919 | 919 | ||
920 | /** | 920 | /** |
921 | * After how many seconds of inactivity should | 921 | * After how many milliseconds of inactivity should |
922 | * connections time out? Zero for no timeout. | 922 | * connections time out? Zero for no timeout. |
923 | */ | 923 | */ |
924 | time_t session_timeout; | 924 | unsigned long long session_timeout; |
925 | 925 | ||
926 | /** | 926 | /** |
927 | * Listen socket. | 927 | * Listen socket. |