Signed-off-by: Thomas Jacob <jacob@xxxxxxxxxxxxx> --- libiptc/libiptc.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libiptc/libiptc.c b/libiptc/libiptc.c index e0c44c3..c77455a 100644 --- a/libiptc/libiptc.c +++ b/libiptc/libiptc.c @@ -160,8 +160,8 @@ STRUCT_TC_HANDLE struct chain_head **chain_index; /* array for fast chain list access*/ unsigned int chain_index_sz;/* size of chain index array */ - struct list_head offsets_create_list; /* array chunks created during data acquisition */ - struct offsets_lookup_table offsets_search; /* final offsets search array */ + struct list_head offsets_create_list; /* Array chunks created during data acquisition */ + struct offsets_lookup_table offsets_search; /* Final offsets search array */ STRUCT_GETINFO info; STRUCT_GET_ENTRIES *entries; @@ -705,11 +705,11 @@ iptcc_find_chain_by_offset(TC_HANDLE_T handle, unsigned int offset) /* - * Fast membership check on order arrays of inclusive intervals + * Fast membership check on ordered arrays of inclusive intervals * ( based on http://en.wikipedia.org/wiki/Binary_search ) * * value: value to search for - * array: array of struct points + * array: array of struct pointers * left: struct attribute denoting left inclusive range limiter in array items * right: struct attribute denoting left inclusive range limiter in array items * size: number of items in array @@ -744,14 +744,14 @@ iptcc_find_chain_by_offset_fast(TC_HANDLE_T handle, unsigned int offset) if (handle->offsets_search.num_entries==0) return NULL; - /* find the chunk */ + /* Find the chunk that could contain an appropriate interval */ binary_array_range_search(offset, handle->offsets_search.entries, head_offset, foot_offset, handle->offsets_search.num_entries, low, high, mid, result); if (result<0) return NULL; - /* find chain in chunk */ + /* Find chain in chunk */ struct chain_head ** chunk_chains = handle->offsets_search.entries[result]->entries; unsigned int num_entries = handle->offsets_search.entries[result]->num_entries; -- 1.5.4.3 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html