diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2014-09-19 11:03:27 +0100 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2014-09-22 08:05:12 +0100 |
commit | 21b0fee0ac507711a9443034ee97280a5e39ee94 (patch) | |
tree | 68479fda6710578c305a8ea97278bea6fef5410a /agent/component.h | |
parent | 5ed865fbf61a381319ac643f3ba8fd2394f457b3 (diff) | |
download | libnice-21b0fee0ac507711a9443034ee97280a5e39ee94.tar.gz |
agent: Improve comments for container element types
To allow enhanced grepping for what structs point to other structs.
Diffstat (limited to 'agent/component.h')
-rw-r--r-- | agent/component.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/agent/component.h b/agent/component.h index 690d712..842b93c 100644 --- a/agent/component.h +++ b/agent/component.h @@ -140,12 +140,12 @@ struct _Component NiceComponentType type; guint id; /* component id */ NiceComponentState state; - GSList *local_candidates; /* list of Candidate objs */ - GSList *remote_candidates; /* list of Candidate objs */ + GSList *local_candidates; /* list of NiceCandidate objs */ + GSList *remote_candidates; /* list of NiceCandidate objs */ GSList *socket_sources; /* list of SocketSource objs; must only grow monotonically */ guint socket_sources_age; /* incremented when socket_sources changes */ GSList *incoming_checks; /* list of IncomingCheck objs */ - GList *turn_servers; /* List of TURN servers */ + GList *turn_servers; /* List of TurnServer objs */ CandidatePair selected_pair; /* independent from checklists, see ICE 11.1. "Sending Media" (ID-19) */ NiceCandidate *restart_candidate; /* for storing active remote candidate during a restart */ |