function _httpbl_cache_get in http:BL 6
Same name and namespace in other branches
- 5 httpbl.module \_httpbl_cache_get()
- 6.2 httpbl.module \_httpbl_cache_get()
- 7 httpbl.module \_httpbl_cache_get()
Get status value from cache table
1 call to _httpbl_cache_get()
- httpbl_check in ./
httpbl.module - Check if an IP should be banned
File
- ./
httpbl.module, line 681 - Implementation of http:BL for Drupal. It provides IP-based blacklisting through http:BL and allows linking to a honeypot.
Code
function _httpbl_cache_get($ip) {
return db_result(db_query("SELECT status FROM {httpbl} WHERE hostname = '%s'", $ip));
}