From: Daniel Wagner Date: Mon, 20 Feb 2012 10:13:33 +0000 (+0100) Subject: ippool: Add error and warning messages X-Git-Tag: 2.0_alpha~576 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=84ffea157a8eb776b793ddd5012eb4752e0cd6fc;p=framework%2Fconnectivity%2Fconnman.git ippool: Add error and warning messages --- diff --git a/src/ippool.c b/src/ippool.c index 065c278..968d20f 100644 --- a/src/ippool.c +++ b/src/ippool.c @@ -353,12 +353,16 @@ struct connman_ippool *__connman_ippool_create(int index, * The range is at max 255 and we don't support overlapping * blocks. */ - if (start + range > 254) + if (start + range > 254) { + connman_error("IP pool does not support pool size larger than 254"); return NULL; + } block = get_free_block(start + range); - if (block == 0) + if (block == 0) { + connman_warn("Could not find a free IP block"); return NULL; + } pool = g_try_new0(struct connman_ippool, 1); if (pool == NULL)