Ignore:
Timestamp:
08/21/10 19:30:35 (21 months ago)
Author:
shiretu
Message:

-- work on android apple streaming
-- work on new SSL support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/applications/applestreamingclient/src/clientcontext.cpp

    r85 r87  
    230230        pScheduleTimer->AddJob(job, true); 
    231231 
    232         job["type"] = "testJNICallback"; 
    233         pScheduleTimer->AddJob(job, true); 
     232        //      job["type"] = "testJNICallback"; 
     233        //      pScheduleTimer->AddJob(job, true); 
    234234 
    235235        //6. Start the master M3U8 fetching 
     
    640640        } 
    641641 
     642        if ((uri[4] == 'S') || (uri[4] == 's')) { 
     643 
     644                FOR_VECTOR_ITERATOR(uint64_t, protocolStackTypes, i) { 
     645                        if (VECTOR_VAL(i) == PT_INBOUND_HTTP) { 
     646                                protocolStackTypes.insert(i, PT_INBOUND_SSL); 
     647                                break; 
     648                        } else if (VECTOR_VAL(i) == PT_OUTBOUND_HTTP) { 
     649                                protocolStackTypes.insert(i, PT_OUTBOUND_SSL); 
     650                                break; 
     651                        } 
     652                } 
     653        } 
     654 
    642655        //3. Prepare the HTTP info 
    643656        Variant parameters; 
Note: See TracChangeset for help on using the changeset viewer.