Ignore:
Timestamp:
Jan 18, 2006 11:12:57 PM (18 years ago)
Author:
bennylp
Message:

Compiled cleanly first time for the new pjlib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/rtp.c

    r66 r121  
    2121#include <pj/os.h>      /* pj_gettimeofday() */ 
    2222#include <pj/sock.h>    /* pj_htonx, pj_htonx */ 
    23 #include <string.h>     /* memset() */ 
     23#include <pj/assert.h> 
     24#include <pj/string.h> 
     25 
    2426 
    2527#define THIS_FILE   "rtp.c" 
     
    6264 
    6365    /* Build default header for outgoing RTP packet. */ 
    64     memset(ses, 0, sizeof(*ses)); 
     66    pj_memset(ses, 0, sizeof(*ses)); 
    6567    ses->out_hdr.v = RTP_VERSION; 
    6668    ses->out_hdr.p = 0; 
Note: See TracChangeset for help on using the changeset viewer.