AFPBridge/tcpconnection.h
Stephen Heumann b5c3a29f37 Initial version, with test program.
It can currently send a GetStatus request and get a response.
2017-03-18 19:42:25 -05:00

10 lines
160 B
C

#ifndef TCPCONNECTION_H
#define TCPCONNECTION_H
#include "session.h"
BOOLEAN StartTCPConnection(Session *sess);
void EndTCPConnection(Session *sess);
#endif