rename crate "bittorrent_udp" to "aquatic_udp_protocol"

This commit is contained in:
Joakim Frostegård 2020-05-25 19:21:52 +02:00
parent abc0034a45
commit bc4ada104d
22 changed files with 46 additions and 48 deletions

View file

@ -9,8 +9,8 @@ use mio::{Events, Poll, Interest, Token};
use mio::net::UdpSocket;
use socket2::{Socket, Domain, Type, Protocol};
use bittorrent_udp::types::IpVersion;
use bittorrent_udp::converters::{response_to_bytes, request_from_bytes};
use aquatic_udp_protocol::types::IpVersion;
use aquatic_udp_protocol::converters::{response_to_bytes, request_from_bytes};
use crate::common::*;
use crate::config::Config;