Browse Source

Fix a typo

pull/773/head
Max Lv 8 years ago
parent
commit
6c6f986576
2 changed files with 2 additions and 2 deletions
  1. 2
      src/server.c
  2. 2
      src/udprelay.c

2
src/server.c

@ -610,7 +610,7 @@ static void server_recv_cb(EV_P_ ev_io *w, int revents)
* | 1 | Variable | 2 | 10 |
* +------+----------+----------+----------------+
*
* If ATYP & ONETIMEAUTH_FLAG(0x10) == 1, Authentication (HMAC-SHA1) is enabled.
* If ATYP & ONETIMEAUTH_FLAG(0x10) != 0, Authentication (HMAC-SHA1) is enabled.
*
* The key of HMAC-SHA1 is (IV + KEY) and the input is the whole header.
* The output of HMAC-SHA is truncated to 10 bytes (leftmost bits).

2
src/udprelay.c

@ -911,7 +911,7 @@ static void server_recv_cb(EV_P_ ev_io *w, int revents)
* | 1 | Variable | 2 | Variable | 10 |
* +------+----------+----------+----------+-------------+
*
* If ATYP & ONETIMEAUTH_FLAG(0x10) == 1, Authentication (HMAC-SHA1) is enabled.
* If ATYP & ONETIMEAUTH_FLAG(0x10) != 0, Authentication (HMAC-SHA1) is enabled.
*
* The key of HMAC-SHA1 is (IV + KEY) and the input is the whole packet.
* The output of HMAC-SHA is truncated to 10 bytes (leftmost bits).

Loading…
Cancel
Save