
2011/8/26 Eric Blake <eblake@redhat.com>:
On 08/26/2011 06:10 AM, Matthias Bolte wrote:
I pointed out a couple of nits, but nothing jumped out at me as a showstopper. ACK, and I'm happy if you push without posting a v3.
Here's the interdiff I'm going to apply, before I push the whole series.
Looks good. ACK to the interdiff.
@@ -61,6 +63,8 @@ hyperyVerifyResponse(WsManClient *client, WsXmlDocH response, return -1; }
+ /* Check the HTTP response code and report an error if it's not 200 (OK), + * 400 (Bad Request) or 500 (Internal Server Error) */ if (responseCode != 200&& responseCode != 400&& responseCode != 500) {
I'm wondering if we might ever want to check for other codes, like 401, but that doesn't hold up this patch as-is.
The basic logic and the error codes in this function comes from a helper function in openwsman, that i recreated here with some additional logic. 401 for example is handled else where in openwsman, as far as I can tell from the codebase. -- Matthias Bolte http://photron.blogspot.com