| 51 | } |
| 52 | |
| 53 | void httpget::set_port(int port) // set port (disconnect, if different to previous) |
| 54 | { |
| 55 | port &= 65535; |
| 56 | if(port < 80) port = 80; |
| 57 | if(port != ip.port) disconnect(); |
| 58 | ip.port = port; |
| 59 | } |
| 60 | |
| 61 | bool httpget::execcallback(float progress) |
| 62 | { |
no test coverage detected