DiskBrowser/tcpconnection.h
Stephen Heumann c237bd661f Add utility code for HTTP connections, URLs, and networking.
This is adapted from NetDisk with minor changes.
2019-04-12 23:23:39 -05:00

11 lines
196 B
C

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