Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix sendto typo and recompile reference sheet #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified lectures/referencesheet/ece252-referencesheet.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions lectures/referencesheet/ece252-referencesheet.tex
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ \subsubsection*{Network}
int accept( int sockfd, struct sockaddr *addr, socklen_t *len );
int send( int sockfd, const void* msg, int length, int flags );
int recv( int sockfd, void * buffer, int length, int flags );
int sendto( int sfd, const void* msg, int len, unsigned int flags, const struct sockaddr* to, socklen_t token );
int sendto( int sfd, const void* msg, int len, unsigned int flags, const struct sockaddr* to, socklen_t tolength );
int recvfrom( int sfd, void* buffer, int len, unsigned int flags, struct sockaddr* from, int* fromlength );

CURLcode curl_global_init( long flags ); /* use CURL_GLOBAL_DEFAULT as flags */
Expand Down Expand Up @@ -449,4 +449,4 @@ \subsubsection*{AIO, Libevent}

\end{lstlisting}

\end{document}
\end{document}