Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/remcons/user.c

    r5d94b16c r178d6a3  
    3535#include <stdio.h>
    3636#include <adt/prodcons.h>
     37#include <ipc/input.h>
     38#include <ipc/console.h>
     39#include <ipc/vfs.h>
    3740#include <errno.h>
    3841#include <str_error.h>
     
    9295        user->locsrv_connection_count = 0;
    9396
    94         user->cursor_x = 0;
    95 
    96         return user;
    97 }
    98 
    99 void telnet_user_add(telnet_user_t *user)
    100 {
     97
    10198        fibril_mutex_lock(&users_guard);
    10299        list_append(&user->link, &users);
    103100        fibril_mutex_unlock(&users_guard);
     101
     102        user->cursor_x = 0;
     103
     104        return user;
    104105}
    105106
     
    198199                if ((recv_length == 0) || (recv_length == ENOTCONN)) {
    199200                        user->socket_closed = true;
    200                         user->srvs.aborted = true;
    201201                        return ENOENT;
    202202                }
Note: See TracChangeset for help on using the changeset viewer.