corosync 3.1.7
Macros | Functions
totemnet.h File Reference

Totem Network interface - also does encryption/decryption. More...

#include <sys/types.h>
#include <sys/socket.h>
#include <corosync/totem/totem.h>
Include dependency graph for totemnet.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define TOTEMNET_NOFLUSH   0
 
#define TOTEMNET_FLUSH   1
 

Functions

int totemnet_initialize (qb_loop_t *poll_handle, void **net_context, struct totem_config *totem_config, totemsrp_stats_t *stats, void *context, void(*deliver_fn)(void *context, const void *msg, unsigned int msg_len, const struct sockaddr_storage *system_from), void(*iface_change_fn)(void *context, const struct totem_ip_address *iface_address, unsigned int iface_no), void(*mtu_changed)(void *context, int net_mtu), void(*target_set_completed)(void *context))
 Create an instance. More...
 
void * totemnet_buffer_alloc (void *net_context)
 
void totemnet_buffer_release (void *net_context, void *ptr)
 
int totemnet_processor_count_set (void *net_context, int processor_count)
 
int totemnet_token_send (void *net_context, const void *msg, unsigned int msg_len)
 
int totemnet_mcast_flush_send (void *net_context, const void *msg, unsigned int msg_len)
 
int totemnet_mcast_noflush_send (void *net_context, const void *msg, unsigned int msg_len)
 
int totemnet_recv_flush (void *net_context)
 
int totemnet_send_flush (void *net_context)
 
int totemnet_iface_set (void *net_context, const struct totem_ip_address *interface_addr, unsigned short ip_port, unsigned int iface_no)
 
int totemnet_iface_check (void *net_context)
 
int totemnet_finalize (void *net_context)
 
int totemnet_net_mtu_adjust (void *net_context, struct totem_config *totem_config)
 
int totemnet_reconfigure (void *net_context, struct totem_config *totem_config)
 
int totemnet_crypto_reconfigure_phase (void *net_context, struct totem_config *totem_config, cfg_message_crypto_reconfig_phase_t phase)
 
void totemnet_stats_clear (void *net_context)
 
const char * totemnet_iface_print (void *net_context)
 
int totemnet_nodestatus_get (void *net_context, unsigned int nodeid, struct totem_node_status *node_status)
 
int totemnet_ifaces_get (void *net_context, char ***status, unsigned int *iface_count)
 
int totemnet_token_target_set (void *net_context, unsigned int target_nodeid)
 
int totemnet_crypto_set (void *net_context, const char *cipher_type, const char *hash_type)
 
int totemnet_recv_mcast_empty (void *net_context)
 
int totemnet_member_add (void *net_context, const struct totem_ip_address *local, const struct totem_ip_address *member, int ring_no)
 
int totemnet_member_remove (void *net_context, const struct totem_ip_address *member, int ring_no)
 
int totemnet_member_set_active (void *net_context, const struct totem_ip_address *member, int active)
 

Detailed Description

Totem Network interface - also does encryption/decryption.

depends on poll abstraction, POSIX, IPV4

Definition in file totemnet.h.

Macro Definition Documentation

◆ TOTEMNET_FLUSH

#define TOTEMNET_FLUSH   1

Definition at line 52 of file totemnet.h.

◆ TOTEMNET_NOFLUSH

#define TOTEMNET_NOFLUSH   0

Definition at line 51 of file totemnet.h.

Function Documentation

◆ totemnet_buffer_alloc()

void * totemnet_buffer_alloc ( void *  net_context)

Definition at line 367 of file totemnet.c.

References transport::buffer_alloc, and totemnet_instance::transport.

◆ totemnet_buffer_release()

void totemnet_buffer_release ( void *  net_context,
void *  ptr 
)

Definition at line 375 of file totemnet.c.

References transport::buffer_release, and totemnet_instance::transport.

◆ totemnet_crypto_reconfigure_phase()

int totemnet_crypto_reconfigure_phase ( void *  net_context,
struct totem_config totem_config,
cfg_message_crypto_reconfig_phase_t  phase 
)

◆ totemnet_crypto_set()

int totemnet_crypto_set ( void *  net_context,
const char *  cipher_type,
const char *  hash_type 
)

◆ totemnet_finalize()

int totemnet_finalize ( void *  net_context)

◆ totemnet_iface_check()

int totemnet_iface_check ( void *  net_context)

◆ totemnet_iface_print()

const char * totemnet_iface_print ( void *  net_context)

◆ totemnet_iface_set()

int totemnet_iface_set ( void *  net_context,
const struct totem_ip_address interface_addr,
unsigned short  ip_port,
unsigned int  iface_no 
)

◆ totemnet_ifaces_get()

int totemnet_ifaces_get ( void *  net_context,
char ***  status,
unsigned int *  iface_count 
)

◆ totemnet_initialize()

int totemnet_initialize ( qb_loop_t *  poll_handle,
void **  net_context,
struct totem_config totem_config,
totemsrp_stats_t stats,
void *  context,
void(*)(void *context, const void *msg, unsigned int msg_len, const struct sockaddr_storage *system_from deliver_fn,
void(*)(void *context, const struct totem_ip_address *iface_address, unsigned int iface_no)  iface_change_fn,
void(*)(void *context, int net_mtu)  mtu_changed,
void(*)(void *context)  target_set_completed 
)

Create an instance.

◆ totemnet_mcast_flush_send()

int totemnet_mcast_flush_send ( void *  net_context,
const void *  msg,
unsigned int  msg_len 
)

◆ totemnet_mcast_noflush_send()

int totemnet_mcast_noflush_send ( void *  net_context,
const void *  msg,
unsigned int  msg_len 
)

◆ totemnet_member_add()

int totemnet_member_add ( void *  net_context,
const struct totem_ip_address local,
const struct totem_ip_address member,
int  ring_no 
)

◆ totemnet_member_remove()

int totemnet_member_remove ( void *  net_context,
const struct totem_ip_address member,
int  ring_no 
)

◆ totemnet_member_set_active()

int totemnet_member_set_active ( void *  net_context,
const struct totem_ip_address member,
int  active 
)

◆ totemnet_net_mtu_adjust()

int totemnet_net_mtu_adjust ( void *  net_context,
struct totem_config totem_config 
)

◆ totemnet_nodestatus_get()

int totemnet_nodestatus_get ( void *  net_context,
unsigned int  nodeid,
struct totem_node_status node_status 
)

◆ totemnet_processor_count_set()

int totemnet_processor_count_set ( void *  net_context,
int  processor_count 
)

◆ totemnet_reconfigure()

int totemnet_reconfigure ( void *  net_context,
struct totem_config totem_config 
)

◆ totemnet_recv_flush()

int totemnet_recv_flush ( void *  net_context)

◆ totemnet_recv_mcast_empty()

int totemnet_recv_mcast_empty ( void *  net_context)

◆ totemnet_send_flush()

int totemnet_send_flush ( void *  net_context)

◆ totemnet_stats_clear()

void totemnet_stats_clear ( void *  net_context)

◆ totemnet_token_send()

int totemnet_token_send ( void *  net_context,
const void *  msg,
unsigned int  msg_len 
)

◆ totemnet_token_target_set()

int totemnet_token_target_set ( void *  net_context,
unsigned int  target_nodeid 
)