- rtpproxy.c: sys/types.h needed for *BSD

- rtpproxy_relay.c: stdlib.h needed for atexit()
- tested: siproxd builds on FreeBSD 4.9
This commit is contained in:
Thomas Ries
2003-11-14 18:48:51 +00:00
parent 5ba59ca603
commit 7422e70993
3 changed files with 7 additions and 1 deletions
+2
View File
@@ -1,5 +1,7 @@
0.5.0
=====
14-Nov-2003: - rtpproxy.c: sys/types.h needed for *BSD
- tested: siproxd builds on FreeBSD 4.9
2-Nov-2003: - rtpproxy bugfix: On repetitive INVITES, the UDP media
port could end up as -1 in the rewritten packet.
1-Nov-2003: - siproxd can use another outbound proxy (chaining)
+4
View File
@@ -20,6 +20,10 @@
#include "config.h"
#ifdef _BSD
#include <sys/types.h>
#endif
#include <netinet/in.h>
#include <osipparser2/osip_parser.h>
+1 -1
View File
@@ -22,11 +22,11 @@
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/time.h>
//#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>