Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/websrv/websrv.c

    rd5c1051 rb7fd2a0  
    134134
    135135
    136 static int recv_create(tcp_conn_t *conn, recv_t **rrecv)
     136static errno_t recv_create(tcp_conn_t *conn, recv_t **rrecv)
    137137{
    138138        recv_t *recv;
     
    157157
    158158/** Receive one character (with buffering) */
    159 static int recv_char(recv_t *recv, char *c)
     159static errno_t recv_char(recv_t *recv, char *c)
    160160{
    161161        size_t nrecv;
    162         int rc;
     162        errno_t rc;
    163163       
    164164        if (recv->rbuf_out == recv->rbuf_in) {
     
    180180
    181181/** Receive one line with length limit */
    182 static int recv_line(recv_t *recv, char **rbuf)
     182static errno_t recv_line(recv_t *recv, char **rbuf)
    183183{
    184184        char *bp = recv->lbuf;
     
    187187        while (bp < recv->lbuf + BUFFER_SIZE) {
    188188                char prev = c;
    189                 int rc = recv_char(recv, &c);
     189                errno_t rc = recv_char(recv, &c);
    190190               
    191191                if (rc != EOK)
     
    226226}
    227227
    228 static int send_response(tcp_conn_t *conn, const char *msg)
     228static errno_t send_response(tcp_conn_t *conn, const char *msg)
    229229{
    230230        size_t response_size = str_size(msg);
     
    233233            fprintf(stderr, "Sending response\n");
    234234       
    235         int rc = tcp_conn_send(conn, (void *) msg, response_size);
     235        errno_t rc = tcp_conn_send(conn, (void *) msg, response_size);
    236236        if (rc != EOK) {
    237237                fprintf(stderr, "tcp_conn_send() failed\n");
     
    242242}
    243243
    244 static int uri_get(const char *uri, tcp_conn_t *conn)
     244static errno_t uri_get(const char *uri, tcp_conn_t *conn)
    245245{
    246246        char *fbuf = NULL;
    247247        char *fname = NULL;
    248         int rc;
     248        errno_t rc;
    249249        size_t nr;
    250250        int fd = -1;
     
    302302}
    303303
    304 static int req_process(tcp_conn_t *conn, recv_t *recv)
     304static errno_t req_process(tcp_conn_t *conn, recv_t *recv)
    305305{
    306306        char *reqline = NULL;
    307307
    308         int rc = recv_line(recv, &reqline);
     308        errno_t rc = recv_line(recv, &reqline);
    309309        if (rc != EOK) {
    310310                fprintf(stderr, "recv_line() failed\n");
     
    355355}
    356356
    357 static int parse_option(int argc, char *argv[], int *index)
     357static errno_t parse_option(int argc, char *argv[], int *index)
    358358{
    359359        int value;
    360         int rc;
     360        errno_t rc;
    361361       
    362362        switch (argv[*index][1]) {
     
    403403static void websrv_new_conn(tcp_listener_t *lst, tcp_conn_t *conn)
    404404{
    405         int rc;
     405        errno_t rc;
    406406        recv_t *recv = NULL;
    407407       
     
    443443        tcp_listener_t *lst;
    444444        tcp_t *tcp;
    445         int rc;
     445        errno_t rc;
    446446       
    447447        /* Parse command line arguments */
Note: See TracChangeset for help on using the changeset viewer.