Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tcp/service.c

    rb7fd2a0 rcde999a  
    6868static void tcp_service_lst_cstate_change(tcp_conn_t *, void *, tcp_cstate_t);
    6969
    70 static errno_t tcp_cconn_create(tcp_client_t *, tcp_conn_t *, tcp_cconn_t **);
     70static int tcp_cconn_create(tcp_client_t *, tcp_conn_t *, tcp_cconn_t **);
    7171
    7272/** Connection callbacks to tie us to lower layer */
     
    132132        tcp_cconn_t *cconn;
    133133        inet_ep2_t epp;
    134         errno_t rc;
     134        int rc;
    135135        tcp_error_t trc;
    136136
     
    298298 * @return EOK on success or ENOMEM if out of memory
    299299 */
    300 static errno_t tcp_cconn_create(tcp_client_t *client, tcp_conn_t *conn,
     300static int tcp_cconn_create(tcp_client_t *client, tcp_conn_t *conn,
    301301    tcp_cconn_t **rcconn)
    302302{
     
    345345 * @return EOK on success or ENOMEM if out of memory
    346346 */
    347 static errno_t tcp_clistener_create(tcp_client_t *client, tcp_conn_t *conn,
     347static int tcp_clistener_create(tcp_client_t *client, tcp_conn_t *conn,
    348348    tcp_clst_t **rclst)
    349349{
     
    390390 *         is found.
    391391 */
    392 static errno_t tcp_cconn_get(tcp_client_t *client, sysarg_t id,
     392static int tcp_cconn_get(tcp_client_t *client, sysarg_t id,
    393393    tcp_cconn_t **rcconn)
    394394{
     
    412412 *         is found.
    413413 */
    414 static errno_t tcp_clistener_get(tcp_client_t *client, sysarg_t id,
     414static int tcp_clistener_get(tcp_client_t *client, sysarg_t id,
    415415    tcp_clst_t **rclst)
    416416{
     
    435435 * @return EOK on success or an error code
    436436 */
    437 static errno_t tcp_conn_create_impl(tcp_client_t *client, inet_ep2_t *epp,
     437static int tcp_conn_create_impl(tcp_client_t *client, inet_ep2_t *epp,
    438438    sysarg_t *rconn_id)
    439439{
    440440        tcp_conn_t *conn;
    441441        tcp_cconn_t *cconn;
    442         errno_t rc;
     442        int rc;
    443443        tcp_error_t trc;
    444444        char *slocal;
     
    482482 * @return EOK on success, ENOENT if no such connection is found
    483483 */
    484 static errno_t tcp_conn_destroy_impl(tcp_client_t *client, sysarg_t conn_id)
     484static int tcp_conn_destroy_impl(tcp_client_t *client, sysarg_t conn_id)
    485485{
    486486        tcp_cconn_t *cconn;
    487         errno_t rc;
     487        int rc;
    488488
    489489        rc = tcp_cconn_get(client, conn_id, &cconn);
     
    509509 * @return EOK on success or an error code
    510510*/
    511 static errno_t tcp_listener_create_impl(tcp_client_t *client, inet_ep_t *ep,
     511static int tcp_listener_create_impl(tcp_client_t *client, inet_ep_t *ep,
    512512    sysarg_t *rlst_id)
    513513{
     
    515515        tcp_clst_t *clst;
    516516        inet_ep2_t epp;
    517         errno_t rc;
     517        int rc;
    518518        tcp_error_t trc;
    519519
     
    555555 * @return EOK on success, ENOENT if no such listener is found
    556556 */
    557 static errno_t tcp_listener_destroy_impl(tcp_client_t *client, sysarg_t lst_id)
     557static int tcp_listener_destroy_impl(tcp_client_t *client, sysarg_t lst_id)
    558558{
    559559        tcp_clst_t *clst;
    560         errno_t rc;
     560        int rc;
    561561
    562562        rc = tcp_clistener_get(client, lst_id, &clst);
     
    580580 * @return EOK on success or an error code
    581581 */
    582 static errno_t tcp_conn_send_fin_impl(tcp_client_t *client, sysarg_t conn_id)
     582static int tcp_conn_send_fin_impl(tcp_client_t *client, sysarg_t conn_id)
    583583{
    584584        tcp_cconn_t *cconn;
    585         errno_t rc;
     585        int rc;
    586586
    587587        rc = tcp_cconn_get(client, conn_id, &cconn);
     
    605605 * @return EOK on success or an error code
    606606 */
    607 static errno_t tcp_conn_push_impl(tcp_client_t *client, sysarg_t conn_id)
     607static int tcp_conn_push_impl(tcp_client_t *client, sysarg_t conn_id)
    608608{
    609609        tcp_cconn_t *cconn;
    610         errno_t rc;
     610        int rc;
    611611
    612612        rc = tcp_cconn_get(client, conn_id, &cconn);
     
    630630 * @return EOK on success or an error code
    631631 */
    632 static errno_t tcp_conn_reset_impl(tcp_client_t *client, sysarg_t conn_id)
     632static int tcp_conn_reset_impl(tcp_client_t *client, sysarg_t conn_id)
    633633{
    634634        tcp_cconn_t *cconn;
    635         errno_t rc;
     635        int rc;
    636636
    637637        rc = tcp_cconn_get(client, conn_id, &cconn);
     
    656656 * @return EOK on success or an error code
    657657 */
    658 static errno_t tcp_conn_send_impl(tcp_client_t *client, sysarg_t conn_id,
     658static int tcp_conn_send_impl(tcp_client_t *client, sysarg_t conn_id,
    659659    void *data, size_t size)
    660660{
    661661        tcp_cconn_t *cconn;
    662         errno_t rc;
     662        int rc;
    663663        tcp_error_t trc;
    664664
     
    686686 * @return EOK on success or an error code
    687687 */
    688 static errno_t tcp_conn_recv_impl(tcp_client_t *client, sysarg_t conn_id,
     688static int tcp_conn_recv_impl(tcp_client_t *client, sysarg_t conn_id,
    689689    void *data, size_t size, size_t *nrecv)
    690690{
    691691        tcp_cconn_t *cconn;
    692692        xflags_t xflags;
    693         errno_t rc;
     693        int rc;
    694694        tcp_error_t trc;
    695695
     
    758758        inet_ep2_t epp;
    759759        sysarg_t conn_id;
    760         errno_t rc;
     760        int rc;
    761761
    762762        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_create_srv()");
     
    802802{
    803803        sysarg_t conn_id;
    804         errno_t rc;
     804        int rc;
    805805
    806806        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_destroy_srv()");
     
    826826        inet_ep_t ep;
    827827        sysarg_t lst_id;
    828         errno_t rc;
     828        int rc;
    829829
    830830        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_listener_create_srv()");
     
    870870{
    871871        sysarg_t lst_id;
    872         errno_t rc;
     872        int rc;
    873873
    874874        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_listener_destroy_srv()");
     
    891891{
    892892        sysarg_t conn_id;
    893         errno_t rc;
     893        int rc;
    894894
    895895        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_send_fin_srv()");
     
    912912{
    913913        sysarg_t conn_id;
    914         errno_t rc;
     914        int rc;
    915915
    916916        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_push_srv()");
     
    933933{
    934934        sysarg_t conn_id;
    935         errno_t rc;
     935        int rc;
    936936
    937937        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_reset_srv()");
     
    957957        sysarg_t conn_id;
    958958        void *data;
    959         errno_t rc;
     959        int rc;
    960960
    961961        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_send_srv())");
     
    10181018        size_t size, rsize;
    10191019        void *data;
    1020         errno_t rc;
     1020        int rc;
    10211021
    10221022        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_recv_srv()");
     
    10741074        size_t size, rsize;
    10751075        void *data;
    1076         errno_t rc;
     1076        int rc;
    10771077
    10781078        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_recv_wait_srv()");
     
    12461246 * @return EOK on success or an error code.
    12471247 */
    1248 errno_t tcp_service_init(void)
    1249 {
    1250         errno_t rc;
     1248int tcp_service_init(void)
     1249{
     1250        int rc;
    12511251        service_id_t sid;
    12521252
Note: See TracChangeset for help on using the changeset viewer.