| 936 | |
| 937 | |
| 938 | HttpSocket::HttpSocket |
| 939 | ( |
| 940 | ): |
| 941 | TcpSocket(), |
| 942 | _user_agent("OpenZWave"), |
| 943 | _accept_encoding(), |
| 944 | _tmpHdr(), |
| 945 | _keep_alive(0), |
| 946 | _remaining(0), |
| 947 | _contentLen(0), |
| 948 | _status(0), |
| 949 | _inProgress(false), |
| 950 | _chunkedTransfer(false), |
| 951 | _mustClose(true), |
| 952 | _followRedir(true), |
| 953 | _alwaysHandle(false), |
| 954 | _filename(), |
| 955 | _pFile(NULL) |
| 956 | { |
| 957 | } |
| 958 | |
| 959 | HttpSocket::~HttpSocket |
| 960 | ( |
nothing calls this directly
no outgoing calls
no test coverage detected