Fixed identiation in private_ike_sa_manager

This commit is contained in:
Martin Willi 2011-05-05 09:54:35 +02:00
parent c6089e252d
commit a836cf8085

View File

@ -307,72 +307,72 @@ struct private_ike_sa_manager_t {
/** /**
* Public interface of ike_sa_manager_t. * Public interface of ike_sa_manager_t.
*/ */
ike_sa_manager_t public; ike_sa_manager_t public;
/** /**
* Hash table with entries for the ike_sa_t objects. * Hash table with entries for the ike_sa_t objects.
*/ */
linked_list_t **ike_sa_table; linked_list_t **ike_sa_table;
/** /**
* The size of the hash table. * The size of the hash table.
*/ */
u_int table_size; u_int table_size;
/** /**
* Mask to map the hashes to table rows. * Mask to map the hashes to table rows.
*/ */
u_int table_mask; u_int table_mask;
/** /**
* Segments of the hash table. * Segments of the hash table.
*/ */
segment_t *segments; segment_t *segments;
/** /**
* The number of segments. * The number of segments.
*/ */
u_int segment_count; u_int segment_count;
/** /**
* Mask to map a table row to a segment. * Mask to map a table row to a segment.
*/ */
u_int segment_mask; u_int segment_mask;
/** /**
* Hash table with half_open_t objects. * Hash table with half_open_t objects.
*/ */
linked_list_t **half_open_table; linked_list_t **half_open_table;
/** /**
* Segments of the "half-open" hash table. * Segments of the "half-open" hash table.
*/ */
shareable_segment_t *half_open_segments; shareable_segment_t *half_open_segments;
/** /**
* Hash table with connected_peers_t objects. * Hash table with connected_peers_t objects.
*/ */
linked_list_t **connected_peers_table; linked_list_t **connected_peers_table;
/** /**
* Segments of the "connected peers" hash table. * Segments of the "connected peers" hash table.
*/ */
shareable_segment_t *connected_peers_segments; shareable_segment_t *connected_peers_segments;
/** /**
* RNG to get random SPIs for our side * RNG to get random SPIs for our side
*/ */
rng_t *rng; rng_t *rng;
/** /**
* SHA1 hasher for IKE_SA_INIT retransmit detection * SHA1 hasher for IKE_SA_INIT retransmit detection
*/ */
hasher_t *hasher; hasher_t *hasher;
/** /**
* reuse existing IKE_SAs in checkout_by_config * reuse existing IKE_SAs in checkout_by_config
*/ */
bool reuse_ikesa; bool reuse_ikesa;
}; };
/** /**