-
Notifications
You must be signed in to change notification settings - Fork 5
/
PICA_nodewait.h
60 lines (47 loc) · 1.53 KB
/
PICA_nodewait.h
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
/*
(c) Copyright 2012 - 2018 Anton Sviridenko
https://picapica.im
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, version 3.
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, see <https://www.gnu.org/licenses/>.
*/
#ifndef PICA_NODEWAIT_H
#define PICA_NODEWAIT_H
#include "PICA_nodeaddrlist.h"
#include "PICA_node.h"
#define PICA_NODEWAIT_NEW 1
#define PICA_NODEWAIT_RESOLVING 5
#define PICA_NODEWAIT_RESOLVED 6
#define PICA_NODEWAIT_CONNECTING 7
#define PICA_NODEWAIT_CONNECTED 8
#define PICA_NODEWAIT_RESOLVING_FAILED 9
#define PICA_NODEWAIT_CONNECT_FAILED 10
struct nodewait
{
struct newconn nc;
int state;
time_t tmst;
//unsigned int addr_type;
// union address_ptr
// {
// struct PICA_nodeaddr_ipv4 *ipv4;
// struct PICA_nodeaddr_ipv6 *ipv6;
// struct PICA_nodeaddr_dns *dns;
// } addrptr;
struct PICA_nodeaddr addr;
struct addrinfo *ai;
int ai_errorcode;
struct nodewait *next;
};
extern struct nodewait *nodewait_list;
struct nodewait *nodewait_list_addnew();
void nodewait_list_delete(struct nodewait *nw);
void nodewait_start_resolve(struct PICA_nodeaddr *a);
void nodewait_start_connect(struct nodewait *nw);
#endif