Properly stop DHT in torrent_stop_DHT() in deluge_core.cpp.
This commit is contained in:
parent
9ac7eed49b
commit
e40398652c
|
@ -1368,6 +1368,8 @@ static PyObject *torrent_stop_DHT(PyObject *self, PyObject *args)
|
||||||
printf("An error occured in saving DHT\r\n");
|
printf("An error occured in saving DHT\r\n");
|
||||||
std::cerr << e.what() << "\n";
|
std::cerr << e.what() << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
M_ses->stop_dht();
|
||||||
|
|
||||||
Py_INCREF(Py_None); return Py_None;
|
Py_INCREF(Py_None); return Py_None;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue