Changes between Version 7 and Version 8 of Using_Standalone_ICE
- Timestamp:
- Mar 17, 2009 8:16:24 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Using_Standalone_ICE
v7 v8 40 40 41 41 [[BR]] 42 == Using standalone ICE in the application == #using 43 44 === Design === 42 == Fitting ICE in the application == 45 43 46 44 To use ICE, the application would need to replace it's send/receive socket(s) with [http://www.pjsip.org/pjnath/docs/html/group__PJNATH__ICE__STREAM__TRANSPORT.htm ICE stream transport] object (will be called ''ice_strans'' for short). Once the ICE session in ''ice_strans'' is up and running, application uses ''pj_ice_strans_sendto()'' to send data, and registers ''on_rx_data()'' in ''pj_ice_strans_cb'' structure to receive incoming data. … … 52 50 53 51 [[BR]] 54 == = Preparations ===52 == Preparations == 55 53 56 54 Before using PJNATH's ICE, several steps need to be done. … … 72 70 73 71 [[BR]] 74 == = Basic lifecycle ===72 == Basic lifecycle == 75 73 76 74 The following are brief overview about the basic life cycle of ''ice_strans''. Each of the steps above will be explained in subsequent sections: