123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- Error prepare_request(Method p_method, const String &p_url, const Vector<String> &p_headers);
- int xhr_id;
- int read_limit;
- int response_read_offset;
- Status status;
- String host;
- int port;
- bool use_tls;
- String username;
- String password;
- int polled_response_code;
- String polled_response_header;
- PoolByteArray polled_response;
- #ifdef DEBUG_ENABLED
- bool has_polled;
- uint64_t last_polling_frame;
- #endif
|