Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/http/src/request.c

    rfab2746 r4d4f656  
    3434 */
    3535
    36 #include <errno.h>
    3736#include <stdio.h>
    3837#include <stdlib.h>
     
    4039#include <macros.h>
    4140
    42 #include <inet/tcp.h>
     41#include <net/socket.h>
    4342
    4443#include <http/http.h>
     
    150149                return rc;
    151150       
    152         rc = tcp_conn_send(http->conn, buf, buf_size);
     151        rc = send(http->conn_sd, buf, buf_size, 0);
    153152        free(buf);
    154153       
Note: See TracChangeset for help on using the changeset viewer.