Changes in uspace/lib/http/src/request.c [fab2746:4d4f656] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/http/src/request.c
rfab2746 r4d4f656 34 34 */ 35 35 36 #include <errno.h>37 36 #include <stdio.h> 38 37 #include <stdlib.h> … … 40 39 #include <macros.h> 41 40 42 #include < inet/tcp.h>41 #include <net/socket.h> 43 42 44 43 #include <http/http.h> … … 150 149 return rc; 151 150 152 rc = tcp_conn_send(http->conn, buf, buf_size);151 rc = send(http->conn_sd, buf, buf_size, 0); 153 152 free(buf); 154 153
Note:
See TracChangeset
for help on using the changeset viewer.