~ubuntu-branches/ubuntu/quantal/linphone/quantal

« back to all changes in this revision

Viewing changes to oRTP/src/port_fct.h

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Mimram
  • Date: 2004-06-30 13:58:16 UTC
  • Revision ID: james.westby@ubuntu.com-20040630135816-wwx75gdlodkqbabb
Tags: upstream-0.12.2
ImportĀ upstreamĀ versionĀ 0.12.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  The oRTP library is an RTP (Realtime Transport Protocol - rfc1889) stack.
 
3
  Copyright (C) 2001  Simon MORLAT simon.morlat@linphone.org
 
4
 
 
5
  This library is free software; you can redistribute it and/or
 
6
  modify it under the terms of the GNU Lesser General Public
 
7
  License as published by the Free Software Foundation; either
 
8
  version 2.1 of the License, or (at your option) any later version.
 
9
 
 
10
  This library is distributed in the hope that it will be useful,
 
11
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
  Lesser General Public License for more details.
 
14
 
 
15
  You should have received a copy of the GNU Lesser General Public
 
16
  License along with this library; if not, write to the Free Software
 
17
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
*/
 
19
 
 
20
/* fct-win32.h.  define unix methods that are not defined in win32 env  */
 
21
 
 
22
#ifdef _WIN32
 
23
#include <Winsock2.h>
 
24
#else
 
25
#include <fcntl.h>
 
26
#endif
 
27
 
 
28
#include "rtpsession.h"
 
29
 
 
30
#ifndef _WIN32
 
31
/* use unix pthread_t... */
 
32
        extern int close_socket(gint sock);
 
33
#else
 
34
        #define pthread_t       HANDLE
 
35
        extern int pthread_create(pthread_t *thread,const void *attr,void *(__cdecl *start)(void *),void* arg);
 
36
        extern int pthread_join(pthread_t thread,void **);
 
37
 
 
38
        extern int close_socket(SOCKET sock);
 
39
        extern int inet_aton (const char * cp, struct in_addr * addr);
 
40
#endif
 
41
 
 
42
extern int set_non_blocking_socket (RtpSession *session);
 
43
extern int set_thread_priority();
 
44
 
 
45
 
 
46