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