mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
7d06d19e40
git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-OpenPGP@5048 b45a01b8-16f6-495d-af2f-9b41ad6348cc
95 lines
2.8 KiB
C
95 lines
2.8 KiB
C
/*
|
|
* Copyright (c) 2005-2008 Nominet UK (www.nic.uk)
|
|
* All rights reserved.
|
|
* Contributors: Ben Laurie, Rachel Willmer. The Contributors have asserted
|
|
* their moral rights under the UK Copyright Design and Patents Act 1988 to
|
|
* be recorded as the authors of this copyright work.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
* use this file except in compliance with the License.
|
|
*
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/** \file
|
|
*/
|
|
|
|
#ifndef OPS_PACKET_TO_TEXT_H
|
|
#define OPS_PACKET_TO_TEXT_H
|
|
|
|
#ifndef OPS_PACKET_H
|
|
#include "packet.h"
|
|
#endif
|
|
|
|
/** ops_list_t
|
|
*/
|
|
typedef struct
|
|
{
|
|
unsigned int size;/* num of array slots allocated */
|
|
unsigned int used; /* num of array slots currently used */
|
|
char **strings;
|
|
} ops_list_t;
|
|
|
|
/** ops_text_t
|
|
*/
|
|
typedef struct
|
|
{
|
|
ops_list_t known;
|
|
ops_list_t unknown;
|
|
} ops_text_t;
|
|
|
|
/** ops_bit_map_t
|
|
*/
|
|
typedef struct
|
|
{
|
|
unsigned char mask;
|
|
char *string;
|
|
} ops_bit_map_t;
|
|
|
|
void ops_text_init(ops_text_t *text);
|
|
void ops_text_free(ops_text_t *text);
|
|
|
|
const char *ops_show_packet_tag(ops_packet_tag_t packet_tag);
|
|
const char *ops_show_ss_type(ops_ss_type_t ss_type);
|
|
|
|
const char *ops_show_sig_type(ops_sig_type_t sig_type);
|
|
const char *ops_show_pka(ops_public_key_algorithm_t pka);
|
|
|
|
ops_text_t *ops_showall_ss_preferred_compression(ops_ss_preferred_compression_t ss_preferred_compression);
|
|
const char *ops_show_ss_preferred_compression(unsigned char octet);
|
|
|
|
ops_text_t *ops_showall_ss_preferred_hash(ops_ss_preferred_hash_t ss_preferred_hash);
|
|
const char *ops_show_hash_algorithm(unsigned char octet);
|
|
const char *ops_show_symmetric_algorithm(unsigned char hash);
|
|
|
|
ops_text_t *ops_showall_ss_preferred_ska(ops_ss_preferred_ska_t ss_preferred_ska);
|
|
const char *ops_show_ss_preferred_ska(unsigned char octet);
|
|
|
|
const char *ops_show_ss_rr_code(ops_ss_rr_code_t ss_rr_code);
|
|
|
|
ops_text_t *ops_showall_ss_features(ops_ss_features_t ss_features);
|
|
|
|
ops_text_t *ops_showall_ss_key_flags(ops_ss_key_flags_t ss_key_flags);
|
|
const char *ops_show_ss_key_flag(unsigned char octet, ops_bit_map_t *map);
|
|
|
|
ops_text_t *ops_showall_ss_key_server_prefs(ops_ss_key_server_prefs_t ss_key_server_prefs);
|
|
const char *ops_show_ss_key_server_prefs(unsigned char octet,
|
|
ops_bit_map_t *map);
|
|
|
|
ops_text_t *ops_showall_ss_notation_data_flags(ops_ss_notation_data_t ss_notation_data);
|
|
|
|
char *ops_str_from_map(int code, ops_map_t *map);
|
|
|
|
/* vim:set textwidth=120: */
|
|
/* vim:set ts=8: */
|
|
|
|
#endif /* OPS_PACKET_TO_TEXT_H */
|