X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dbus%2Fdbus-address.h;h=e51ef0aee1ac69587909720919fc0d81802c05be;hb=7d9239c9c78cb6d0b9c282376fcf3cda1de23209;hp=c569044aef7d147a672b822415427c77b7de1806;hpb=d012387afef0ba02185ebe27bc6bb15551912e92;p=platform%2Fupstream%2Fdbus.git diff --git a/dbus/dbus-address.h b/dbus/dbus-address.h index c569044..e51ef0a 100644 --- a/dbus/dbus-address.h +++ b/dbus/dbus-address.h @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #if !defined (DBUS_INSIDE_DBUS_H) && !defined (DBUS_COMPILATION) @@ -40,16 +40,22 @@ DBUS_BEGIN_DECLS /** Opaque type representing one of the semicolon-separated items in an address */ typedef struct DBusAddressEntry DBusAddressEntry; +DBUS_EXPORT dbus_bool_t dbus_parse_address (const char *address, DBusAddressEntry ***entry, int *array_len, DBusError *error); +DBUS_EXPORT const char *dbus_address_entry_get_value (DBusAddressEntry *entry, const char *key); +DBUS_EXPORT const char *dbus_address_entry_get_method (DBusAddressEntry *entry); +DBUS_EXPORT void dbus_address_entries_free (DBusAddressEntry **entries); +DBUS_EXPORT char* dbus_address_escape_value (const char *value); +DBUS_EXPORT char* dbus_address_unescape_value (const char *value, DBusError *error);