Show dime.h syntax highlighted
/*
* $Id: dime.h 13394 2007-04-21 10:56:10Z cbiere $
*
* Copyright (c) 2004, Jeroen Asselman
*
*----------------------------------------------------------------------
* This file is part of gtk-gnutella.
*
* gtk-gnutella 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 of the License, or
* (at your option) any later version.
*
* gtk-gnutella is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gtk-gnutella; if not, write to the Free Software
* Foundation, Inc.:
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*----------------------------------------------------------------------
*/
/**
* @ingroup core
* @file
*
* Dime parser / creator.
*
* @author Jeroen Asselman
* @date 2004
*/
/* Dime message parsing. */
#ifndef _dime_h_
#define _dime_h_
#include "common.h"
struct dime_record;
struct dime_record *dime_record_alloc(void);
void dime_record_free(struct dime_record **record_ptr);
size_t dime_create_record(const struct dime_record *record,
char **data_ptr, gboolean first, gboolean last);
gboolean dime_record_set_data(struct dime_record *record,
const void *data, size_t size);
gboolean dime_record_set_id(struct dime_record *record, const char *id);
gboolean dime_record_set_type_uri(struct dime_record *, const char *type);
gboolean dime_record_set_type_mime(struct dime_record *, const char *type);
void dime_list_free(GSList **list_ptr);
GSList *dime_parse_records(const gchar *data, size_t size);
const char *dime_record_type(const struct dime_record *record);
size_t dime_record_type_length(const struct dime_record *record);
const char *dime_record_id(const struct dime_record *record);
size_t dime_record_id_length(const struct dime_record *record);
const char *dime_record_data(const struct dime_record *record);
size_t dime_record_data_length(const struct dime_record *record);
#endif /* _dime_h_ */
/* vi: set ts=4 sw=4 cindent: */
See more files for this project here