unbound 0.1
Data Structures | Functions
view.h File Reference

This file contains functions to enable named views that can hold local zone authority service. More...

#include "util/rbtree.h"
#include "util/locks.h"

Data Structures

struct  views
 Views storage, shared. More...
 
struct  view
 View. More...
 

Functions

struct viewsviews_create (void)
 Create views storage.
 
void views_delete (struct views *v)
 Delete views storage.
 
int views_apply_cfg (struct views *v, struct config_file *cfg)
 Apply config settings; Takes care of locking.
 
int view_cmp (const void *v1, const void *v2)
 Compare two view entries in rbtree.
 
void view_delete (struct view *v)
 Delete one view.
 
void views_print (struct views *v)
 Debug helper.
 
struct viewviews_find_view (struct views *vs, const char *name, int write)
 find a view by name
 

Detailed Description

This file contains functions to enable named views that can hold local zone authority service.

Function Documentation

◆ views_create()

struct views * views_create ( void )

Create views storage.

Returns
new struct or NULL on error.

References views::lock, rbtree_init(), view_cmp(), and views::vtree.

Referenced by daemon_fork(), respip_view_conf_actions_test(), respip_view_conf_data_test(), and view_and_respipchecks().

◆ views_delete()

void views_delete ( struct views * v)

Delete views storage.

Parameters
vviews to delete.

References views::lock, traverse_postorder(), and views::vtree.

Referenced by daemon_cleanup(), respip_view_conf_actions_test(), respip_view_conf_data_test(), and view_and_respipchecks().

◆ views_apply_cfg()

int views_apply_cfg ( struct views * v,
struct config_file * cfg )

◆ view_cmp()

int view_cmp ( const void * v1,
const void * v2 )

Compare two view entries in rbtree.

Sort canonical.

Parameters
v1view 1
v2view 2
Returns
: negative, positive or 0 comparison value.

References view::name.

Referenced by fptr_whitelist_rbtree_cmp(), and views_create().

◆ view_delete()

void view_delete ( struct view * v)

Delete one view.

Parameters
vview to delete.

References view::local_zones, local_zones_delete(), view::lock, view::name, view::respip_set, and respip_set_delete().

Referenced by views_enter_view_name().

◆ views_print()

void views_print ( struct views * v)

Debug helper.

Print all views Takes care of locking.

Parameters
vthe views tree