summaryrefslogtreecommitdiff
path: root/agent/candidate.h
diff options
context:
space:
mode:
authorYouness Alaoui <youness.alaoui@collabora.co.uk>2012-08-22 15:55:03 -0400
committerOlivier CrĂȘte <olivier.crete@ocrete.ca>2014-05-15 09:33:43 -0400
commita9b439edc7cb3487adf53b8ce83b1d0c08cd5cb3 (patch)
treeab779910a597a3c4030116f97697080f68ece28f /agent/candidate.h
parent2e774cd3374efc9b24b6b4023cc3386a7fce902d (diff)
downloadlibnice-a9b439edc7cb3487adf53b8ce83b1d0c08cd5cb3.tar.gz
Add ICE-TCP candidate transport types
Diffstat (limited to 'agent/candidate.h')
-rw-r--r--agent/candidate.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/agent/candidate.h b/agent/candidate.h
index b5ee7e9..d492e5c 100644
--- a/agent/candidate.h
+++ b/agent/candidate.h
@@ -91,12 +91,18 @@ typedef enum
/**
* NiceCandidateTransport:
* @NICE_CANDIDATE_TRANSPORT_UDP: UDP transport
+ * @NICE_CANDIDATE_TRANSPORT_TCP_ACTIVE: TCP Active transport
+ * @NICE_CANDIDATE_TRANSPORT_TCP_PASSIVE: TCP Passive transport
+ * @NICE_CANDIDATE_TRANSPORT_TCP_SO: TCP Simultaneous-Open transport
*
* An enum representing the type of transport to use
*/
typedef enum
{
NICE_CANDIDATE_TRANSPORT_UDP,
+ NICE_CANDIDATE_TRANSPORT_TCP_ACTIVE,
+ NICE_CANDIDATE_TRANSPORT_TCP_PASSIVE,
+ NICE_CANDIDATE_TRANSPORT_TCP_SO,
} NiceCandidateTransport;
/**