Changeset 2903 for pjproject/trunk
- Timestamp:
- Aug 19, 2009 9:39:17 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_msg.c
r2724 r2903 22 22 #include <pjsip/print_util.h> 23 23 #include <pjsip/sip_errno.h> 24 #include <pj/ctype.h> 24 25 #include <pj/string.h> 25 26 #include <pj/pool.h> … … 1904 1905 pj_memcpy(buf, sip_ver.ptr, sip_ver.slen); 1905 1906 buf += sip_ver.slen; 1906 pj_memcpy(buf, hdr->transport.ptr, hdr->transport.slen); 1907 //pj_memcpy(buf, hdr->transport.ptr, hdr->transport.slen); 1908 /* Convert transport type to UPPERCASE (some endpoints want that) */ 1909 { 1910 int i; 1911 for (i=0; i<hdr->transport.slen; ++i) { 1912 buf[i] = (char)pj_toupper(hdr->transport.ptr[i]); 1913 } 1914 } 1907 1915 buf += hdr->transport.slen; 1908 1916 *buf++ = ' ';
Note: See TracChangeset
for help on using the changeset viewer.