| 112 | */ |
| 113 | |
| 114 | static int cache_maxage( void ) |
| 115 | { |
| 116 | int age = 100; |
| 117 | LIST * const var = var_get( root_module(), constant_HCACHEMAXAGE ); |
| 118 | if ( !list_empty( var ) ) |
| 119 | { |
| 120 | age = atoi( object_str( list_front( var ) ) ); |
| 121 | if ( age < 0 ) |
| 122 | age = 0; |
| 123 | } |
| 124 | return age; |
| 125 | } |
| 126 | |
| 127 | |
| 128 | /* |
no test coverage detected