0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-16 15:00:51 +01:00
construct/modules/net_dns.h

39 lines
1.1 KiB
C++

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
namespace ircd::net::dns::cache
{
struct waiter;
bool operator==(const waiter &, const waiter &);
bool operator!=(const waiter &, const waiter &);
void fini();
void init();
extern std::list<waiter> waiting;
extern ctx::mutex mutex;
extern ctx::dock dock;
}
struct ircd::net::dns::cache::waiter
{
dns::callback callback;
dns::opts opts;
uint16_t port;
string_view key;
char keybuf[rfc1035::NAME_BUFSIZE*2];
waiter(const hostport &hp, const dns::opts &opts, dns::callback &&callback);
waiter(waiter &&) = delete;
waiter(const waiter &) = delete;
waiter &operator=(waiter &&) = delete;
waiter &operator=(const waiter &) = delete;
};