Ignore:
Timestamp:
Jul 15, 2010 1:32:11 PM (14 years ago)
Author:
ming
Message:

Fixed #1104: Append ".local" to the system's hostname in IOS 4.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/sock_bsd.c

    r2966 r3238  
    451451            hostname.slen = 0; 
    452452        } else { 
    453            hostname.slen = strlen(buf); 
     453            hostname.slen = strlen(buf); 
     454#if defined(PJ_GETHOSTNAME_APPEND_LOCAL_SUFFIX) && \ 
     455    PJ_GETHOSTNAME_APPEND_LOCAL_SUFFIX!=0 
     456            { 
     457                const pj_str_t suffix = {".local", 6}; 
     458 
     459                if (hostname.slen < suffix.slen || 
     460                    pj_ansi_strnicmp(hostname.ptr + hostname.slen - 
     461                                     suffix.slen, suffix.ptr, suffix.slen)) 
     462                { 
     463                    if (hostname.slen + suffix.slen + 1 < sizeof(buf)) 
     464                        pj_strcat(&hostname, &suffix); 
     465                    else 
     466                        hostname.slen = 0; 
     467                    hostname.ptr[hostname.slen] = '\0'; 
     468                } 
     469            } 
     470#endif 
    454471        } 
    455472    } 
Note: See TracChangeset for help on using the changeset viewer.