aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-cadet.c
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2019-06-24 11:47:25 +0200
committert3sserakt <t3ss@posteo.de>2019-06-26 00:15:31 +0200
commitc4fa51bb2d924fe3f7fc94f3c1cbdda179b8a4d5 (patch)
treed031140d5f703852853eb71823337fed9942f251 /src/cadet/gnunet-cadet.c
parent17611641fe7da3d2711e1f20eaf2ee81faf0e702 (diff)
downloadgnunet-c4fa51bb2d924fe3f7fc94f3c1cbdda179b8a4d5.tar.gz
gnunet-c4fa51bb2d924fe3f7fc94f3c1cbdda179b8a4d5.zip
removed GNUNET_CADET_ChannelOption
Diffstat (limited to 'src/cadet/gnunet-cadet.c')
-rw-r--r--src/cadet/gnunet-cadet.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cadet/gnunet-cadet.c b/src/cadet/gnunet-cadet.c
index 932d069a1..262cdf64d 100644
--- a/src/cadet/gnunet-cadet.c
+++ b/src/cadet/gnunet-cadet.c
@@ -784,7 +784,6 @@ run (void *cls,
784 if (NULL != target_id) 784 if (NULL != target_id)
785 { 785 {
786 struct GNUNET_PeerIdentity pid; 786 struct GNUNET_PeerIdentity pid;
787 enum GNUNET_CADET_ChannelOption opt;
788 787
789 if (GNUNET_OK != 788 if (GNUNET_OK !=
790 GNUNET_CRYPTO_eddsa_public_key_from_string (target_id, 789 GNUNET_CRYPTO_eddsa_public_key_from_string (target_id,
@@ -801,7 +800,6 @@ run (void *cls,
801 "Connecting to `%s:%s'\n", 800 "Connecting to `%s:%s'\n",
802 target_id, 801 target_id,
803 target_port); 802 target_port);
804 opt = GNUNET_CADET_OPTION_DEFAULT | GNUNET_CADET_OPTION_RELIABLE;
805 GNUNET_CRYPTO_hash (target_port, 803 GNUNET_CRYPTO_hash (target_port,
806 strlen(target_port), 804 strlen(target_port),
807 &porthash); 805 &porthash);
@@ -809,7 +807,6 @@ run (void *cls,
809 NULL, 807 NULL,
810 &pid, 808 &pid,
811 &porthash, 809 &porthash,
812 opt,
813 NULL /* window changes */, 810 NULL /* window changes */,
814 &channel_ended, 811 &channel_ended,
815 handlers); 812 handlers);