mirror of
https://github.com/sheumann/DiskBrowser.git
synced 2024-10-31 09:15:14 +00:00
c237bd661f
This is adapted from NetDisk with minor changes.
11 lines
196 B
C
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
|