/usr/include/bitlbee/misc.h is in bitlbee-dev 3.4.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | /********************************************************************\
* BitlBee -- An IRC to other IM-networks gateway *
* *
* Copyright 2002-2012 Wilmer van der Gaast and others *
\********************************************************************/
/* Misc. functions */
/*
This program 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.
This program 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 with
the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
if not, write to the Free Software Foundation, Inc., 51 Franklin St.,
Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _MISC_H
#define _MISC_H
#include <gmodule.h>
#include <time.h>
struct ns_srv_reply {
int prio;
int weight;
int port;
char name[];
};
#ifndef NAMESER_HAS_NS_TYPES
#define NS_MAXDNAME 1025
#define NS_INT16SZ 2
#define NS_INT32SZ 4
#define NS_GET16(s, cp) do { \
register const unsigned char *t_cp = (const unsigned char *) (cp); \
(s) = ((guint16) t_cp[0] << 8) \
| ((guint16) t_cp[1]) \
; \
(cp) += NS_INT16SZ; \
} while (0)
#define NS_GET32(s, cp) do { \
register const unsigned char *t_cp = (const unsigned char *) (cp); \
(s) = ((guint16) t_cp[0] << 24) \
| ((guint16) t_cp[1] << 16) \
| ((guint16) t_cp[2] << 8) \
| ((guint16) t_cp[3]) \
; \
(cp) += NS_INT32SZ; \
} while (0)
#define ns_rr_rdlen(rr) ((rr).rdlength + 0)
#define ns_rr_rdata(rr) ((rr).rdata + 0)
struct _ns_flagdata { int mask, shift; };
typedef struct __ns_rr {
char name[NS_MAXDNAME];
guint16 type;
guint16 rr_class;
guint32 ttl;
guint16 rdlength;
const unsigned char* rdata;
} ns_rr;
typedef enum __ns_sect {
ns_s_qd = 0,
ns_s_zn = 0,
ns_s_an = 1,
ns_s_pr = 1,
ns_s_ns = 2,
ns_s_ud = 2,
ns_s_ar = 3,
ns_s_max = 4
} ns_sect;
typedef struct __ns_msg {
const unsigned char* _msg;
const unsigned char* _eom;
guint16 _id;
guint16 _flags;
guint16 _counts[ns_s_max];
const unsigned char* _sections[ns_s_max];
ns_sect _sect;
int _rrnum;
const unsigned char* _msg_ptr;
} ns_msg;
typedef enum __ns_class {
ns_c_invalid = 0,
ns_c_in = 1,
ns_c_2 = 2,
ns_c_chaos = 3,
ns_c_hs = 4,
ns_c_none = 254,
ns_c_any = 255,
ns_c_max = 65536
} ns_class;
/* TODO : fill out the rest */
typedef enum __ns_type {
ns_t_srv = 33
} ns_type;
#endif /* NAMESER_HAS_NS_INITPARSE */
G_MODULE_EXPORT void strip_linefeed(gchar *text);
G_MODULE_EXPORT char *add_cr(char *text);
G_MODULE_EXPORT char *strip_newlines(char *source);
G_MODULE_EXPORT time_t get_time(int year, int month, int day, int hour, int min, int sec);
G_MODULE_EXPORT time_t mktime_utc(struct tm *tp);
double gettime(void);
G_MODULE_EXPORT void strip_html(char *msg);
G_MODULE_EXPORT char *escape_html(const char *html);
G_MODULE_EXPORT void http_decode(char *s);
G_MODULE_EXPORT void http_encode(char *s);
G_MODULE_EXPORT char *ipv6_wrap(char *src);
G_MODULE_EXPORT char *ipv6_unwrap(char *src);
G_MODULE_EXPORT signed int do_iconv(char *from_cs, char *to_cs, char *src, char *dst, size_t size, size_t maxbuf);
G_MODULE_EXPORT void random_bytes(unsigned char *buf, int count);
G_MODULE_EXPORT int is_bool(char *value);
G_MODULE_EXPORT int bool2int(char *value);
G_MODULE_EXPORT struct ns_srv_reply **srv_lookup(char *service, char *protocol, char *domain);
G_MODULE_EXPORT void srv_free(struct ns_srv_reply **srv);
G_MODULE_EXPORT char *word_wrap(const char *msg, int line_len);
G_MODULE_EXPORT gboolean ssl_sockerr_again(void *ssl);
G_MODULE_EXPORT int md5_verify_password(char *password, char *hash);
G_MODULE_EXPORT char **split_command_parts(char *command, int limit);
G_MODULE_EXPORT char *get_rfc822_header(const char *text, const char *header, int len);
G_MODULE_EXPORT int truncate_utf8(char *string, int maxlen);
G_MODULE_EXPORT gboolean parse_int64(char *string, int base, guint64 *number);
G_MODULE_EXPORT char *str_reject_chars(char *string, const char *reject, char replacement);
#endif
|