Skip to content

Commit

Permalink
Change log wording
Browse files Browse the repository at this point in the history
  • Loading branch information
akiroz committed Jan 18, 2024
1 parent c5fc6f3 commit 8dd6267
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zika"
version = "3.2.1"
version = "3.2.2"
license = "MIT"
description = "IP Tunneling over MQTT"
repository = "https://github.com/akiroz/zika"
Expand Down
2 changes: 1 addition & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ use tokio_util::codec::Framed;
use tun::{AsyncDevice, TunPacket, TunPacketCodec};

use crate::config;
use crate::ip_iter::SizedIpv4NetworkIterator;
use crate::remote;
use crate::ip_iter::SizedIpv4NetworkIterator;

type TunSink = SplitSink<Framed<AsyncDevice, TunPacketCodec>, TunPacket>;

Expand Down
2 changes: 1 addition & 1 deletion src/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl Remote {
match pkt {
Packet::ConnAck(ConnAck { code: Success, session_present, .. }) => {
if !session_present {
log::info!("broker[{}] !session_present", context.nth);
log::info!("broker[{}] new session", context.nth);
let subs_v = context.subs.lock().await;
let subs = subs_v.iter().map(|path| Filter {
path: path.clone(),
Expand Down

0 comments on commit 8dd6267

Please sign in to comment.