diff options
| author | vi117747 <none@none> | 2007-01-18 02:23:57 -0800 |
|---|---|---|
| committer | vi117747 <none@none> | 2007-01-18 02:23:57 -0800 |
| commit | 2c2c41837e330b002c4220a39638150db504fe0e (patch) | |
| tree | c7b51802e672ee52606064042a36dae866520c0d /usr/src/lib/libsip/common/sip_itf.c | |
| parent | 81eba2fddf0016dd9d1a1a01d7b3e4829fe7b074 (diff) | |
| download | illumos-joyent-2c2c41837e330b002c4220a39638150db504fe0e.tar.gz | |
6480199 header files in libsip needs clean-up
6481951 SIP timer doesn't schedule timeouts accurately
6484530 Memory leak in deleting partial dialogs
Diffstat (limited to 'usr/src/lib/libsip/common/sip_itf.c')
| -rw-r--r-- | usr/src/lib/libsip/common/sip_itf.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/usr/src/lib/libsip/common/sip_itf.c b/usr/src/lib/libsip/common/sip_itf.c index 40f3c955e2..db6f1098bf 100644 --- a/usr/src/lib/libsip/common/sip_itf.c +++ b/usr/src/lib/libsip/common/sip_itf.c @@ -20,22 +20,24 @@ */ /* - * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #pragma ident "%Z%%M% %I% %E% SMI" -#ifdef __linux__ -#include <stdarg.h> -#else -#include <sys/varargs.h> -#endif -#include "sip_parse_uri.h" +#include <stdio.h> +#include <string.h> +#include <stdlib.h> +#include <assert.h> +#include <ctype.h> +#include <errno.h> +#include <pthread.h> +#include <sip.h> + #include "sip_msg.h" #include "sip_miscdefs.h" #include "sip_xaction.h" -#include "sip_hash.h" #include "sip_dialog.h" #include "sip_parse_generic.h" |
