forked from premiere/premiere-libtorrent
Merge pull request #617 from arvidn/py-dht_get_peers-1.1
make dht_get_peers_reply_alert::peers a function in python binding
This commit is contained in:
commit
cdddf62468
|
@ -772,6 +772,6 @@ void bind_alert()
|
||||||
"dht_get_peers_reply_alert", no_init)
|
"dht_get_peers_reply_alert", no_init)
|
||||||
.def_readonly("info_hash", &dht_get_peers_reply_alert::info_hash)
|
.def_readonly("info_hash", &dht_get_peers_reply_alert::info_hash)
|
||||||
.def("num_peers", &dht_get_peers_reply_alert::num_peers)
|
.def("num_peers", &dht_get_peers_reply_alert::num_peers)
|
||||||
.add_property("peers", &dht_get_peers_reply_alert_peers)
|
.def("peers", &dht_get_peers_reply_alert_peers)
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue