OpenDNSSEC-enforcer 2.1.13
|
Go to the source code of this file.
Functions | |
const char * | db_join_from_table (const db_join_t *join) |
const char * | db_join_from_field (const db_join_t *join) |
const char * | db_join_to_table (const db_join_t *join) |
const char * | db_join_to_field (const db_join_t *join) |
const db_join_t * | db_join_next (const db_join_t *join) |
const db_join_t * | db_join_list_begin (const db_join_list_t *join_list) |
const char * db_join_from_field | ( | const db_join_t * | join | ) |
Get the from field name of a database join.
[in] | join | a db_join_t pointer. |
Definition at line 49 of file db_join.c.
References db_join::from_field.
const char * db_join_from_table | ( | const db_join_t * | join | ) |
Get the from table name of a database join.
[in] | join | a db_join_t pointer. |
Definition at line 41 of file db_join.c.
References db_join::from_table.
const db_join_t * db_join_list_begin | ( | const db_join_list_t * | join_list | ) |
Return the first database join in a database join list.
[in] | join_list | a db_join_list_t pointer. |
Definition at line 85 of file db_join.c.
References db_join_list::begin.
Get the next database join connected in a database join list.
[in] | join | a db_join_t pointer. |
Definition at line 73 of file db_join.c.
References db_join::next.
const char * db_join_to_field | ( | const db_join_t * | join | ) |
Get the to field name of a database join.
[in] | join | a db_join_t pointer. |
Definition at line 65 of file db_join.c.
References db_join::to_field.
const char * db_join_to_table | ( | const db_join_t * | join | ) |
Get the to table name of a database join.
[in] | join | a db_join_t pointer. |
Definition at line 57 of file db_join.c.
References db_join::to_table.