Document the new Copy Profile button.
[obnox/wireshark/wip.git] / epan / ipv4.c
index f37caef07d832de092bcbfc46f854ab8c92ca436..0472a5be3de0a74fe9e29736ea683b243af2626d 100644 (file)
@@ -5,13 +5,12 @@
  *
  * Gilbert Ramirez <gram@alumni.rice.edu>
  *
- * $Id: ipv4.c,v 1.4 2002/08/28 20:40:44 jmayer Exp $
+ * $Id$
  *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
- *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
@@ -37,7 +36,6 @@
 #include "ipv4.h"
 #include "packet.h" /* for ip_to_str */
 
-static guint32 create_nmask(gint net_bits);
 
 ipv4_addr*
 ipv4_addr_new(void)
@@ -51,8 +49,7 @@ ipv4_addr_new(void)
 void
 ipv4_addr_free(ipv4_addr *ipv4)
 {
-       if (ipv4)
-               g_free(ipv4);
+       g_free(ipv4);
 }
 
 void
@@ -70,8 +67,21 @@ ipv4_addr_set_net_order_addr(ipv4_addr *ipv4, guint32 new_addr)
 void
 ipv4_addr_set_netmask_bits(ipv4_addr *ipv4, guint new_nmask_bits)
 {
-/*     ipv4->nmask_bits = new_nmask_bits;*/
-       ipv4->nmask = create_nmask(new_nmask_bits);
+       static guint32 bitmasks[33] = {
+               0x00000000,
+               0x80000000, 0xc0000000, 0xe0000000, 0xf0000000,
+               0xf8000000, 0xfc000000, 0xfe000000, 0xff000000,
+               0xff800000, 0xffc00000, 0xffe00000, 0xfff00000,
+               0xfff80000, 0xfffc0000, 0xfffe0000, 0xffff0000,
+               0xffff8000, 0xffffc000, 0xffffe000, 0xfffff000,
+               0xfffff800, 0xfffffc00, 0xfffffe00, 0xffffff00,
+               0xffffff80, 0xffffffc0, 0xffffffe0, 0xfffffff0,
+               0xfffffff8, 0xfffffffc, 0xfffffffe, 0xffffffff,
+       };
+
+       g_assert(new_nmask_bits <= 32);
+
+       ipv4->nmask = bitmasks[new_nmask_bits];
 }
 
 guint32
@@ -86,31 +96,12 @@ ipv4_get_host_order_addr(ipv4_addr *ipv4)
        return ipv4->addr;
 }
 
-gchar*
-ipv4_addr_str(ipv4_addr *ipv4)
+/* We're assuming the buffer is at least MAX_IP_STR_LEN (16 bytes) */
+void
+ipv4_addr_str_buf(const ipv4_addr *ipv4, gchar *buf)
 {
        guint32 ipv4_host_order = g_htonl(ipv4->addr);
-       return ip_to_str((gchar*)&ipv4_host_order);
-}
-
-static guint32
-create_nmask(gint net_bits)
-{
-       static guint32 bitmasks[33] = {
-               0x00000000,
-               0x80000000, 0xc0000000, 0xe0000000, 0xf0000000,
-               0xf8000000, 0xfc000000, 0xfe000000, 0xff000000,
-               0xff800000, 0xffc00000, 0xffe00000, 0xfff00000,
-               0xfff80000, 0xfffc0000, 0xfffe0000, 0xffff0000,
-               0xffff8000, 0xffffc000, 0xffffe000, 0xfffff000,
-               0xfffff800, 0xfffffc00, 0xfffffe00, 0xffffff00,
-               0xffffff80, 0xffffffc0, 0xffffffe0, 0xfffffff0,
-               0xfffffff8, 0xfffffffc, 0xfffffffe, 0xffffffff,
-       };
-
-       g_assert(net_bits <= 32);
-
-       return bitmasks[net_bits];
+       ip_to_str_buf((guint8*)&ipv4_host_order, buf, MAX_IP_STR_LEN);
 }