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