Skip to content

Commit

Permalink
lua: add missing declaration for kr_rplan_pop
Browse files Browse the repository at this point in the history
Fixes #35.
  • Loading branch information
vcunat committed Dec 2, 2016
1 parent 82ccbbd commit 875b095
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion daemon/lua/kres.lua
Expand Up @@ -276,7 +276,7 @@ const knot_rrset_t *knot_pkt_rr(const knot_pktsection_t *section, uint16_t i);
const knot_pktsection_t *knot_pkt_section(const knot_pkt_t *pkt,
knot_section_t section_id);

/*
/*
* libkres API
*/
/* Resolution request */
Expand All @@ -285,6 +285,7 @@ void *kr_resolve_pool(struct kr_request *request);
/* Resolution plan */
struct kr_query *kr_rplan_push(struct kr_rplan *rplan, struct kr_query *parent,
const knot_dname_t *name, uint16_t cls, uint16_t type);
int kr_rplan_pop(struct kr_rplan *rplan, struct kr_query *qry);
struct kr_query *kr_rplan_resolved(struct kr_rplan *rplan);
struct kr_query *kr_rplan_next(struct kr_query *qry);
/* Nameservers */
Expand Down

0 comments on commit 875b095

Please sign in to comment.