Skip to content

Commit

Permalink
Merge pull request hufrea#26 from eltociear/patch-1
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
hufrea authored Aug 4, 2024
2 parents 6325488 + c1acedd commit fe7f949
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packets.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ bool is_dns_req(char *buffer, size_t n)
}
bool is_quic_inital(char *buffer, size_t bsize)
bool is_quic_initial(char *buffer, size_t bsize)
{
return (bsize > 64 && (buffer[0] & 0xc0) == 0xc0);
}
Expand Down
2 changes: 1 addition & 1 deletion packets.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ int part_tls(char *buffer, size_t bsize, ssize_t n, long pos);

//bool is_dns_req(char *buffer, size_t n);

//bool is_quic_inital(char *buffer, size_t bsize);
//bool is_quic_initial(char *buffer, size_t bsize);

0 comments on commit fe7f949

Please sign in to comment.