Changeset 21029
- Timestamp:
- 02/10/08 08:49:09 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/tweek/tweek/CORBA/CorbaManager.cpp
r21028 r21029 211 211 try 212 212 { 213 std::ostringstream end_point_stream; 214 213 // Create a two-dimensional array of constant strings to be passed as 214 // the options to CORBA::ORB_init(). The first column is the property 215 // name, and the second is the property value. This will either contain 216 // one non-empty row (row 0) identifying the GIOP end point address 217 // ("endPoint"), or both rows will be empty. The last row has to have 218 // both columns set to NULL to denote the end of the option list. 215 219 const char* options[2][2] = { { NULL, NULL }, { NULL, NULL } }; 216 220 … … 245 249 else 246 250 { 251 std::ostringstream end_point_stream; 252 247 253 end_point_stream << "giop:tcp:" << endPointAddr << ":" 248 254 << endPointPort;
