Show ggep_type.h syntax highlighted
/*
* $Id: ggep_type.h 13285 2007-04-13 01:03:20Z cbiere $
*
* Copyright (c) 2002-2003, Raphael Manfredi
*
*----------------------------------------------------------------------
* 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
*
* GGEP type-specific routines.
*
* @author Raphael Manfredi
* @date 2002-2003
*/
#ifndef _core_ggep_type_h_
#define _core_ggep_type_h_
#include "common.h"
#include "lib/host_addr.h"
#include "if/core/search.h"
/**
* Extraction interface return types.
*/
typedef enum ggept_status {
GGEP_OK = 0, /**< OK, extracted what was asked */
GGEP_NOT_FOUND = 1, /**< OK, but did not find it */
GGEP_INVALID = 2, /**< Error, found something invalid */
GGEP_BAD_SIZE = 3 /**< Error, buffer not correctly sized */
} ggept_status_t;
/*
* Public interface.
*/
struct gnutella_host;
ggept_status_t ggept_h_sha1_extract(extvec_t *exv, struct sha1 *sha1);
/** Decompiled payload of "GTKGV1" */
struct ggep_gtkgv1 {
guint8 major;
guint8 minor;
guint8 patch;
guint8 revchar;
guint32 release;
guint32 build;
};
ggept_status_t ggept_gtkgv1_extract(extvec_t *exv, struct ggep_gtkgv1 *info);
ggept_status_t ggept_hname_extract(extvec_t *exv, gchar *buf, gint len);
ggept_status_t ggept_lf_extract(extvec_t *exv, guint64 *fs);
ggept_status_t ggept_du_extract(extvec_t *exv, guint32 *uptime);
ggept_status_t ggept_ct_extract(extvec_t *exv, time_t *stamp_ptr);
ggept_status_t ggept_gtkg_ipv6_extract(extvec_t *exv, host_addr_t *addr);
ggept_status_t ggept_alt_extract(extvec_t *exv, gnet_host_vec_t **hvec);
ggept_status_t ggept_push_extract(extvec_t *exv, gnet_host_vec_t **hvec);
guint ggept_lf_encode(guint64 filesize, gchar *data);
guint ggept_du_encode(guint32 uptime, gchar *data);
guint ggept_ct_encode(time_t stamp, gchar *data);
#endif /* _core_ggep_type_h_ */
/* vi: set ts=4 sw=4 cindent: */
See more files for this project here