Subversion Repositories HelenOS

Rev

Rev 2596 | Rev 2625 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2596 Rev 2619
Line 57... Line 57...
57
 
57
 
58
    /*
58
    /*
59
     * The connection was opened via the IPC_CONNECT_ME_TO call.
59
     * The connection was opened via the IPC_CONNECT_ME_TO call.
60
     * This call needs to be answered.
60
     * This call needs to be answered.
61
     */
61
     */
62
    ipc_answer_fast_0(iid, EOK);
62
    ipc_answer_0(iid, EOK);
63
 
63
 
64
    /*
64
    /*
65
     * Here we enter the main connection fibril loop.
65
     * Here we enter the main connection fibril loop.
66
     * The logic behind this loop and the protocol is that we'd like to keep
66
     * The logic behind this loop and the protocol is that we'd like to keep
67
     * each connection open until the client hangs up. When the client hangs
67
     * each connection open until the client hangs up. When the client hangs
Line 101... Line 101...
101
        case VFS_WRITE:
101
        case VFS_WRITE:
102
        case VFS_SEEK:
102
        case VFS_SEEK:
103
        case VFS_UNLINK:
103
        case VFS_UNLINK:
104
        case VFS_RENAME:
104
        case VFS_RENAME:
105
        default:
105
        default:
106
            ipc_answer_fast_0(callid, ENOTSUP);
106
            ipc_answer_0(callid, ENOTSUP);
107
            break;
107
            break;
108
        }
108
        }
109
    }
109
    }
110
 
110
 
111
    /* TODO: cleanup after the client */
111
    /* TODO: cleanup after the client */