1knet_host_set_policy(3) Kronosnet Programmer's Manual knet_host_set_policy(3)
2
3
4
6 knet_host_set_policy - Set the switching policy for a host's links.
7
9 #include <libknet.h>
10
11 int knet_host_set_policy(
12 knet_handle_t knet_h,
13 knet_node_id_t host_id,
14 uint8_t policy
15 );
16
18 knet_host_set_policy
19
20 knet_h - pointer to knet_handle_t
21
22 host_id - see knet_host_add(3)
23
24 policy - there are currently 3 kind of simple switching policies based
25 on link configuration. KNET_LINK_POLICY_PASSIVE - the active link with
26 the lowest priority will be used. if one or more active links share the
27 same priority, the one with lowest link_id will be used.
28
29 KNET_LINK_POLICY_ACTIVE - all active links will be used simultaneously
30 to send traffic. link priority is ignored.
31
32 KNET_LINK_POLICY_RR - round-robin policy, every packet will be send on
33 a different active link.
34
36 knet_host_set_policy returns 0 on success -1 on error and errno is set.
37
39 knet_handle_remove_datafd(3), knet_handle_get_stats(3),
40 knet_host_add(3), knet_handle_pmtud_setfreq(3),
41 knet_handle_pmtud_get(3), knet_host_get_id_by_host_name(3),
42 knet_host_get_status(3), knet_link_get_pong_count(3),
43 knet_link_get_priority(3), knet_handle_free(3),
44 knet_handle_enable_sock_notify(3), knet_handle_get_datafd(3),
45 knet_recv(3), knet_link_get_ping_timers(3),
46 knet_log_get_subsystem_id(3), knet_host_remove(3),
47 knet_host_enable_status_change_notify(3), knet_strtoaddr(3),
48 knet_send(3), knet_handle_enable_pmtud_notify(3),
49 knet_handle_get_transport_reconnect_interval(3),
50 knet_link_get_enable(3), knet_link_set_priority(3),
51 knet_log_set_loglevel(3), knet_handle_get_channel(3),
52 knet_link_get_config(3), knet_link_get_link_list(3),
53 knet_get_transport_list(3), knet_get_transport_id_by_name(3),
54 knet_log_get_loglevel_id(3), knet_handle_new_ex(3),
55 knet_host_set_name(3), knet_addrtostr(3), knet_handle_setfwd(3),
56 knet_get_compress_list(3), knet_get_transport_name_by_id(3),
57 knet_handle_enable_filter(3), knet_handle_compress(3),
58 knet_link_get_status(3), knet_handle_add_datafd(3), knet_send_sync(3),
59 knet_log_get_loglevel_name(3), knet_host_get_host_list(3),
60 knet_host_get_policy(3), knet_link_set_enable(3),
61 knet_link_set_pong_count(3), knet_log_get_subsystem_name(3),
62 knet_host_get_name_by_host_id(3), knet_link_clear_config(3),
63 knet_log_get_loglevel(3), knet_handle_new(3),
64 knet_handle_pmtud_getfreq(3), knet_handle_clear_stats(3),
65 knet_link_set_config(3), knet_handle_crypto(3),
66 knet_get_crypto_list(3),
67 knet_handle_set_transport_reconnect_interval(3),
68 knet_link_set_ping_timers(3)
69
71 Copyright (C) 2010-2019 Red Hat, Inc. All rights reserved.
72
73
74
75kronosnet 2019-05-09 knet_host_set_policy(3)