Changeset 333:c39712b8ae23 in mediastreamer2


Ignore:
Timestamp:
Mar 11, 2009 9:37:28 PM (4 years ago)
Author:
smorlat <smorlat@…>
Branch:
default
Message:

fix bug when using proxies

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@336 3f6dc0c8-ddfe-455d-9043-3cd528dc4637

Location:
linphone
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • linphone/console/linphonec.dev

    r260 r333  
    5858ResourceIncludes= 
    5959MakeIncludes= 
    60 Compiler=-g -02_@@_ 
     60Compiler=-g -02_@@_-DIN_LINPHONE_@@_-D_WIN32_WINNT=0x0501 _@@_ 
    6161CppCompiler= 
    6262Linker=-mwindows_@@_-Wl,--export-all-symbols_@@_-Wl,--add-stdcall-alias_@@_-llinphone_@@_-lmediastreamer2_@@_-lortp_@@_-losip2_@@_-losipparser2_@@_-leXosip2_@@_-lws2_32_@@_ 
  • linphone/coreapi/plugins/buddylookup/src/lookup.c

    r332 r333  
    2525void set_proxy(SoupSession *session, const char *proxy){ 
    2626        SoupURI *uri=soup_uri_new(proxy); 
     27        ms_message("Using http proxy %s",proxy); 
    2728        g_object_set(G_OBJECT(session),"proxy-uri",uri,NULL); 
    2829} 
     
    3334        s->session=soup_session_sync_new(); 
    3435        proxy=getenv("http_proxy"); 
    35         set_proxy(s->session,proxy); 
     36        if (proxy && strlen(proxy)>0) set_proxy(s->session,proxy); 
    3637        ctx->data=s; 
    3738} 
     
    160161        }else{ 
    161162                ms_error("request failed, error-code=%i (%s)",code,soup_status_get_phrase(code)); 
    162                 *((int*)NULL)=3; 
    163163                s->status=BuddyLookupFailure; 
    164164        } 
  • linphone/gtk-glade/linphone.iss

    r328 r333  
    44[Setup] 
    55AppName=Linphone 
    6 AppVerName=Linphone for windows 3.0.0 (gtk/glade interface based on liblinphone) 
     6AppVerName=Linphone version 3.0.0 
    77AppPublisher=linphone.org 
    88AppPublisherURL=http://www.linphone.org 
Note: See TracChangeset for help on using the changeset viewer.