diff options
Diffstat (limited to 'src/server/cmd/buddy_list.rs')
| -rw-r--r-- | src/server/cmd/buddy_list.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/cmd/buddy_list.rs b/src/server/cmd/buddy_list.rs index 1423808..cbddc19 100644 --- a/src/server/cmd/buddy_list.rs +++ b/src/server/cmd/buddy_list.rs @@ -1,5 +1,3 @@ -/// In the future, this will take a `Vec` of buddies and dynamically -/// create a response packet based on the amount of buddies given. pub fn create_buddy_list_notify_command(buddy: &str) -> Vec<u8> { let mut buddy_list_notify = Vec::with_capacity(5 + buddy.len()); buddy_list_notify.push(0x01); // ? |