Skip to content

Commit

Permalink
Merge pull request #80 from mmsaki/example-fix
Browse files Browse the repository at this point in the history
fix compilation errors from `server.c` example
  • Loading branch information
drbruced12 authored Sep 9, 2024
2 parents 9661b08 + e026e1c commit 1da9130
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion foundation/software.rst
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ out the characters that arrive on the connection.
{
struct sockaddr_in sin;
char buf[MAX_LINE];
int buf_len, addr_len;
int buf_len;
socklen_t addr_len;
int s, new_s;
/* build address data structure */
Expand Down

0 comments on commit 1da9130

Please sign in to comment.