Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRDP/FreeRDP-old.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libfreerdp-core/iso.h')
-rw-r--r--libfreerdp-core/iso.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libfreerdp-core/iso.h b/libfreerdp-core/iso.h
index 148b687..f9e3669 100644
--- a/libfreerdp-core/iso.h
+++ b/libfreerdp-core/iso.h
@@ -18,6 +18,8 @@
*/
#include <freerdp/types/ui.h>
+
+#include "network.h"
#include "stream.h"
#include "nego.h"
@@ -29,7 +31,7 @@ struct rdp_iso
char* cookie;
struct _NEGO * nego;
struct rdp_mcs * mcs;
- struct rdp_tcp * tcp;
+ struct rdp_network * net;
};
typedef struct rdp_iso rdpIso;
@@ -60,7 +62,7 @@ iso_connect(rdpIso * iso, char * server, char * username, int port);
void
iso_disconnect(rdpIso * iso);
rdpIso *
-iso_new(struct rdp_mcs * mcs);
+iso_new(struct rdp_network * net);
void
iso_free(rdpIso * iso);