aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-08 19:37:32 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-08 19:37:32 +0000
commitea3ff01740cdfd4505503bcff9f5d889ce1b4545 (patch)
treea5e132ea461313403543d068f9d1bef091ccbe85 /src
parent90014223bee3789cbb1baffe3dc169e18883fe02 (diff)
downloadgnunet-ea3ff01740cdfd4505503bcff9f5d889ce1b4545.tar.gz
gnunet-ea3ff01740cdfd4505503bcff9f5d889ce1b4545.zip
adding address abstraction
Diffstat (limited to 'src')
-rw-r--r--src/hello/Makefile.am2
-rw-r--r--src/hello/address.c64
-rw-r--r--src/include/gnunet_hello_lib.h60
3 files changed, 124 insertions, 2 deletions
diff --git a/src/hello/Makefile.am b/src/hello/Makefile.am
index 61c84e50e..0122a1918 100644
--- a/src/hello/Makefile.am
+++ b/src/hello/Makefile.am
@@ -12,7 +12,7 @@ endif
12lib_LTLIBRARIES = libgnunethello.la 12lib_LTLIBRARIES = libgnunethello.la
13 13
14libgnunethello_la_SOURCES = \ 14libgnunethello_la_SOURCES = \
15 hello.c 15 hello.c address.c
16libgnunethello_la_LIBADD = \ 16libgnunethello_la_LIBADD = \
17 $(top_builddir)/src/util/libgnunetutil.la $(XLIB) 17 $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
18libgnunethello_la_LDFLAGS = \ 18libgnunethello_la_LDFLAGS = \
diff --git a/src/hello/address.c b/src/hello/address.c
new file mode 100644
index 000000000..51fb296c3
--- /dev/null
+++ b/src/hello/address.c
@@ -0,0 +1,64 @@
1/*
2 This file is part of GNUnet.
3 (C) 2009 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20
21/**
22 * @file hello/address.c
23 * @brief helper functions for handling addresses
24 * @author Christian Grothoff
25 */
26#include "platform.h"
27#include "gnunet_hello_lib.h"
28#include "gnunet_util_lib.h"
29
30
31/**
32 * Allocate an address struct.
33 *
34 * @param peer the peer
35 * @param transport_name plugin name
36 * @param address binary address
37 * @param address_length number of bytes in 'address'
38 * @return the address struct
39 */
40struct GNUNET_HELLO_Address *
41GNUNET_HELLO_address_allocate (const struct GNUNET_PeerIdentity *peer,
42 const char *transport_name,
43 const void *address,
44 size_t address_length)
45{
46 struct GNUNET_HELLO_Address *addr;
47 size_t slen;
48 char *end;
49
50 slen = strlen (transport_name) + 1;
51 addr = GNUNET_malloc (sizeof (struct GNUNET_HELLO_Address) +
52 address_length +
53 slen);
54 addr->peer = *peer;
55 addr->address = &addr[1];
56 end = (char*) &addr[1];
57 memcpy (end, address, address_length);
58 addr->address_length = address_length;
59 addr->transport_name = &end[address_length];
60 memcpy (&end[address_length], transport_name, slen);
61 return addr;
62}
63
64/* end of address.c */
diff --git a/src/include/gnunet_hello_lib.h b/src/include/gnunet_hello_lib.h
index 7f5e5fee0..4e8554b52 100644
--- a/src/include/gnunet_hello_lib.h
+++ b/src/include/gnunet_hello_lib.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2001, 2002, 2003, 2004, 2005, 2006, 2010 Christian Grothoff (and other contributing authors) 3 (C) 2001, 2002, 2003, 2004, 2005, 2006, 2010, 2011 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
@@ -38,6 +38,64 @@ extern "C"
38#include "gnunet_common.h" 38#include "gnunet_common.h"
39#include "gnunet_crypto_lib.h" 39#include "gnunet_crypto_lib.h"
40 40
41
42/**
43 * An address for communicating with a peer. We frequently
44 * need this tuple and the components cannot really be
45 * separated. This is NOT the format that would be used
46 * on the wire.
47 */
48struct GNUNET_HELLO_Address
49{
50
51 /**
52 * For which peer is this an address?
53 */
54 struct GNUNET_PeerIdentity peer;
55
56 /**
57 * Name of the transport plugin enabling the communication using
58 * this address.
59 */
60 const char *transport_name;
61
62 /**
63 * Binary representation of the address (plugin-specific).
64 */
65 const void *address;
66
67 /**
68 * Number of bytes in 'address'.
69 */
70 size_t address_length;
71
72};
73
74
75/**
76 * Allocate an address struct.
77 *
78 * @param peer the peer
79 * @param transport_name plugin name
80 * @param address binary address
81 * @param address_length number of bytes in 'address'
82 * @return the address struct
83 */
84struct GNUNET_HELLO_Address *
85GNUNET_HELLO_address_allocate (const struct GNUNET_PeerIdentity *peer,
86 const char *transport_name,
87 const void *address,
88 size_t address_length);
89
90
91/**
92 * Free an address.
93 *
94 * @param addr address to free
95 */
96#define GNUNET_HELLO_address_free(addr) GNUNET_free(addr)
97
98
41/** 99/**
42 * A HELLO message is used to exchange information about 100 * A HELLO message is used to exchange information about
43 * transports with other peers. This struct is guaranteed 101 * transports with other peers. This struct is guaranteed