mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
4 years ago
|
/**
|
||
11 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
11 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
11 years ago
|
*
|
||
4 years ago
|
* By using this file, you agree to the terms and conditions set
|
||
|
* forth in the LICENSE file which can be found at the top level of
|
||
|
* the distribution.
|
||
11 years ago
|
*
|
||
|
*/
|
||
|
|
||
10 years ago
|
/******************************************************************************
|
||
|
* File: netsink.h
|
||
|
*
|
||
|
* Description: Network socket sink.
|
||
|
* Supports writing binary data to a TCP or UDP socket.
|
||
|
*
|
||
|
* Reference:
|
||
|
*****************************************************************************/
|
||
11 years ago
|
|
||
4 years ago
|
#ifndef SRSRAN_NETSINK_H
|
||
|
#define SRSRAN_NETSINK_H
|
||
11 years ago
|
|
||
|
#include <arpa/inet.h>
|
||
5 years ago
|
#include <netinet/in.h>
|
||
|
#include <stdbool.h>
|
||
11 years ago
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
5 years ago
|
#include <sys/socket.h>
|
||
11 years ago
|
|
||
4 years ago
|
#include "srsran/config.h"
|
||
11 years ago
|
|
||
4 years ago
|
typedef enum { SRSRAN_NETSINK_UDP, SRSRAN_NETSINK_TCP } srsran_netsink_type_t;
|
||
10 years ago
|
|
||
11 years ago
|
/* Low-level API */
|
||
4 years ago
|
typedef struct SRSRAN_API {
|
||
5 years ago
|
int sockfd;
|
||
|
bool connected;
|
||
4 years ago
|
srsran_netsink_type_t type;
|
||
5 years ago
|
struct sockaddr_in servaddr;
|
||
4 years ago
|
} srsran_netsink_t;
|
||
11 years ago
|
|
||
4 years ago
|
SRSRAN_API int srsran_netsink_init(srsran_netsink_t* q, const char* address, uint16_t port, srsran_netsink_type_t type);
|
||
10 years ago
|
|
||
4 years ago
|
SRSRAN_API void srsran_netsink_free(srsran_netsink_t* q);
|
||
11 years ago
|
|
||
4 years ago
|
SRSRAN_API int srsran_netsink_write(srsran_netsink_t* q, void* buffer, int nof_bytes);
|
||
11 years ago
|
|
||
4 years ago
|
SRSRAN_API int srsran_netsink_set_nonblocking(srsran_netsink_t* q);
|
||
10 years ago
|
|
||
4 years ago
|
#endif // SRSRAN_NETSINK_H
|