blob: 53658062e7ba84949f7e815dbf9996c4145d0b29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/********************************************************************************
** *
** Name uipc_linux.h *
** *
** Function Linux specific UIPC definitions *
** *
** *
** Copyright (c) 2007-2010, Broadcom Corp., All Rights Reserved. *
** Proprietary and confidential. *
** *
*********************************************************************************/
#ifndef _UIPC_LINUX_H_
#define _UIPC_LINUX_H_
typedef int SOCKET;
#define INVALID_SOCKET (SOCKET)(-1)
#define SOCKET_ERROR (-1)
/* tcp/ip socket configuration */
typedef struct {
char *p_address;
unsigned int port;
} tUIPC_LINUX_CFG_TCP ;
#ifdef __cplusplus
extern "C" {
#endif
/* Socket configuration for GLGPS interface */
extern tUIPC_LINUX_CFG_TCP uipc_linux_cfg_glgps;
#ifdef __cplusplus
}
#endif
#endif /* _UIPC_LINUX_H_ */
|