mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-06 12:33:22 -05:00
9 lines
385 B
C
9 lines
385 B
C
|
/*********************************** uici.h **************************/
|
||
|
/* Prototypes for the three public UICI functions */
|
||
|
/*********************************************************************/
|
||
|
#define UPORT
|
||
|
typedef unsigned short u_port_t;
|
||
|
int u_open(u_port_t port);
|
||
|
int u_accept(int fd, char *hostn, int hostnsize);
|
||
|
int u_connect(u_port_t port, char *hostn);
|