| 1: | <?php | 
| 2: | |
| 3: | /** | 
| 4: | * Class protector_precommon_bwlimit_message | 
| 5: | */ | 
| 6: | class Protector_precommon_bwlimit_message extends ProtectorFilterAbstract | 
| 7: | { | 
| 8: | public function execute() | 
| 9: | { | 
| 10: | header('HTTP/1.0 503 Service unavailable'); | 
| 11: | header('Retry-After: 600'); | 
| 12: | |
| 13: | echo _MD_PROTECTOR_BANDWIDTHLIMITED; | 
| 14: | exit; | 
| 15: | } | 
| 16: | } | 
| 17: |