Changeset 0c2eee0 in mainline
- Timestamp:
- 2009-05-19T21:41:55Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c0e5d2
- Parents:
- 287e83f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r287e83f r0c2eee0 53 53 { 54 54 bool keep_on_going = true; 55 55 56 56 /* 57 57 * The connection was opened via the IPC_CONNECT_ME_TO call. … … 80 80 case IPC_M_PHONE_HUNGUP: 81 81 keep_on_going = false; 82 break;83 case IPC_M_CONNECT_ME_TO:84 /*85 * Connect the client file system to another one.86 */87 /* FIXME:88 * Prevent ordinary clients from connecting to file89 * system servers directly. This should be solved by90 * applying some security mechanisms.91 */92 fs_handle = IPC_GET_ARG1(call);93 phone = vfs_grab_phone(fs_handle);94 (void) ipc_forward_fast(callid, phone, 0, 0, 0,95 IPC_FF_NONE);96 vfs_release_phone(phone);97 82 break; 98 83 case VFS_REGISTER:
Note:
See TracChangeset
for help on using the changeset viewer.