Fixed some typos, courtesy of codespell
This commit is contained in:
@@ -86,7 +86,7 @@ struct private_generator_t {
|
||||
uint8_t current_bit;
|
||||
|
||||
/**
|
||||
* Associated data struct to read informations from.
|
||||
* Associated data struct to read information from.
|
||||
*/
|
||||
void *data_struct;
|
||||
|
||||
|
||||
@@ -312,7 +312,7 @@ struct message_t {
|
||||
status_t (*add_fragment)(message_t *this, message_t *fragment);
|
||||
|
||||
/**
|
||||
* Gets the source host informations.
|
||||
* Gets the source host information.
|
||||
*
|
||||
* @warning Returned host_t object is not getting cloned,
|
||||
* do not destroy nor modify.
|
||||
@@ -322,7 +322,7 @@ struct message_t {
|
||||
host_t * (*get_source) (message_t *this);
|
||||
|
||||
/**
|
||||
* Sets the source host informations.
|
||||
* Sets the source host information.
|
||||
*
|
||||
* @warning host_t object is not getting cloned and gets destroyed by
|
||||
* message_t.destroy or next call of message_t.set_source.
|
||||
@@ -332,7 +332,7 @@ struct message_t {
|
||||
void (*set_source) (message_t *this, host_t *host);
|
||||
|
||||
/**
|
||||
* Gets the destination host informations.
|
||||
* Gets the destination host information.
|
||||
*
|
||||
* @warning Returned host_t object is not getting cloned,
|
||||
* do not destroy nor modify.
|
||||
@@ -342,7 +342,7 @@ struct message_t {
|
||||
host_t * (*get_destination) (message_t *this);
|
||||
|
||||
/**
|
||||
* Sets the destination host informations.
|
||||
* Sets the destination host information.
|
||||
*
|
||||
* @warning host_t object is not getting cloned and gets destroyed by
|
||||
* message_t.destroy or next call of message_t.set_destination.
|
||||
|
||||
@@ -37,7 +37,7 @@ typedef struct encoding_rule_t encoding_rule_t;
|
||||
* Header is parsed like a payload and gets its one payload_id
|
||||
* from PRIVATE USE space. Also the substructures
|
||||
* of specific payload types get their own payload_id
|
||||
* from PRIVATE_USE space. See IKEv2-Draft for more informations.
|
||||
* from PRIVATE_USE space. See IKEv2-Draft for more information.
|
||||
*/
|
||||
enum encoding_type_t {
|
||||
|
||||
|
||||
@@ -477,7 +477,7 @@ static entry_t* get_or_create_entry(private_eap_radius_accounting_t *this,
|
||||
.interim = {
|
||||
.last = now,
|
||||
},
|
||||
/* default terminate cause, if none other catched */
|
||||
/* default terminate cause, if none other caught */
|
||||
.cause = ACCT_CAUSE_USER_REQUEST,
|
||||
);
|
||||
snprintf(entry->sid, sizeof(entry->sid), "%u-%u", this->prefix, unique);
|
||||
|
||||
@@ -550,7 +550,7 @@ module Vici
|
||||
# Listen for a set of event messages. This call is blocking, and invokes
|
||||
# the passed closure for each event received. The closure receives the
|
||||
# event name and the event message as argument. To stop listening, the
|
||||
# closure may raise a StopEventListening exception, the only catched
|
||||
# closure may raise a StopEventListening exception, the only caught
|
||||
# exception.
|
||||
def listen_events(events, &block)
|
||||
self.class.instance_eval do
|
||||
|
||||
Reference in New Issue
Block a user