mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-18 18:25:10 -05:00
Add callback signature and libraries for shell-parse
So that the link succeeds. Co-authored-by: Wouter Wijngaards <wcawijngaards@users.noreply.github.com>
This commit is contained in:
parent
e29d8c5298
commit
ba65f504ba
3 changed files with 12 additions and 2 deletions
|
|
@ -240,7 +240,7 @@ STREAMTCP_OBJ_LINK=$(STREAMTCP_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ) \
|
|||
$(SLDNS_OBJ)
|
||||
SHELL_PARSE_SRC=testcode/shell-parse.c
|
||||
SHELL_PARSE_OBJ=shell-parse.lo
|
||||
SHELL_PARSE_OBJ_LINK=$(SHELL_PARSE_OBJ) $(COMMON_OBJ) $(COMPAT_OBJ) \
|
||||
SHELL_PARSE_OBJ_LINK=$(SHELL_PARSE_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ) \
|
||||
$(SLDNS_OBJ)
|
||||
DOHCLIENT_SRC=testcode/dohclient.c
|
||||
DOHCLIENT_OBJ=dohclient.lo
|
||||
|
|
@ -422,7 +422,7 @@ streamtcp$(EXEEXT): $(STREAMTCP_OBJ_LINK)
|
|||
$(LINK) -o $@ $(STREAMTCP_OBJ_LINK) $(SSLLIB) $(LIBS)
|
||||
|
||||
shell-parse$(EXEEXT): $(SHELL_PARSE_OBJ_LINK)
|
||||
$(LINK) -o $@ $(SHELL_PARSE_OBJ_LINK)
|
||||
$(LINK) -o $@ $(SHELL_PARSE_OBJ_LINK) $(SSLLIB) $(LIBS)
|
||||
|
||||
dohclient$(EXEEXT): $(DOHCLIENT_OBJ_LINK)
|
||||
$(LINK) -o $@ $(DOHCLIENT_OBJ_LINK) $(SSLLIB) $(LIBS)
|
||||
|
|
|
|||
|
|
@ -2500,6 +2500,10 @@ char *unbound_stat_strdup_log(const char *s, const char* file, int line,
|
|||
#define UNBOUND_DNS_OVER_HTTPS_PORT 443
|
||||
/** default port for DNS over QUIC traffic. */
|
||||
#define UNBOUND_DNS_OVER_QUIC_PORT 853
|
||||
/** default port for DNS over COAP over UDP traffic. */
|
||||
#define UNBOUND_DNS_OVER_COAP_PORT 5683
|
||||
/** default port for DNS over COAP over DTLS over UDP traffic. */
|
||||
#define UNBOUND_DNS_OVER_COAPS_PORT 5684
|
||||
/** default port for unbound control traffic, registered port with IANA,
|
||||
ub-dns-control 8953/tcp unbound dns nameserver control */
|
||||
#define UNBOUND_CONTROL_PORT 8953
|
||||
|
|
|
|||
|
|
@ -786,3 +786,9 @@ size_t doq_table_quic_size_get(struct doq_table* ATTR_UNUSED(table))
|
|||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
void comm_point_doc_callback(int ATTR_UNUSED(fd), short ATTR_UNUSED(event),
|
||||
void* ATTR_UNUSED(arg))
|
||||
{
|
||||
/* nothing */
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue