summary refs log tree commit diff stats
path: root/po/de.po
diff options
context:
space:
mode:
authorInsu Yun <wuninsu@gmail.com>2015-11-20 16:51:08 -0500
committerPatrick Griffis <tingping@tingping.se>2016-02-19 07:26:50 -0500
commit50463ca8321c39f3966c278ab25ca158404d72f1 (patch)
treef64d6a19d1dde4ca79965108086b6e35c2c36f82 /po/de.po
parent0826e7d353f1b29dd5feaaaf3e90b02965ffab2f (diff)
Properly handle missing SSL certificate
According to OpenSSL document
(https://www.openssl.org/docs/manmaster/ssl/SSL_get_verify_result.html),
when using SSL_get_verify_result(), the existence of certificate
needs to be checked. However, in current code, it does not.
Therefore, certificate existence check is required for correctly
handling the exception.

Closes #1549
Diffstat (limited to 'po/de.po')
0 files changed, 0 insertions, 0 deletions
ion support' href='/git-repos/torxchat.git/commit/src/common/proto-irc.h?h=feature/flexible-cert&id=94186f7888d5a730e52e433a21698154dfcc4e2e'>94186f78 ^
059cbcd4 ^

94186f78 ^










4a6ceffb ^


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


















                                                                            


                    

                       
 
                                                 

                                                                                 










                                                                           


                                      
/* HexChat
 * Copyright (C) 1998-2010 Peter Zelezny.
 * Copyright (C) 2009-2013 Berke Viktor.
 *
 * 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
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

#include <time.h>
#include "hexchat.h"

#ifndef HEXCHAT_PROTO_H
#define HEXCHAT_PROTO_H

#define MESSAGE_TAGS_DATA_INIT			\
	{									\
		(time_t)0, /* timestamp */		\
	}

/* Message tag information that might be passed along with a server message
 *
 * See http://ircv3.atheme.org/specification/capability-negotiation-3.1
 */
typedef struct 
{
	time_t timestamp;
} message_tags_data;

void proto_fill_her_up (server *serv);

#endif