mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-19 10:23:17 +00:00
14 lines
263 B
C
14 lines
263 B
C
![]() |
#ifndef _NETCODE_H
|
||
|
#define _NETCODE_H
|
||
|
|
||
|
#include "connpool.h"
|
||
|
|
||
|
void nc_ping_entry(struct CP_ENTRY *cpe);
|
||
|
int nc_connect_rand(int *main, int *alt, int *local);
|
||
|
int nc_send(int s, const void *buf, size_t len);
|
||
|
char *nc_recv(int s);
|
||
|
|
||
|
extern long readtimeout;
|
||
|
|
||
|
#endif
|