Index: generic/include/ipc/ipc.h
===================================================================
--- generic/include/ipc/ipc.h	(revision bd5a66303dbc439520defdf0dbb2f94fd9ee02b8)
+++ generic/include/ipc/ipc.h	(revision a6cb8cb97c5c7102783c146df88c9c7cb21b82c6)
@@ -43,5 +43,5 @@
 					* userspace, will be discarded */
 #define IPC_CALL_FORWARDED      (1<<3) /* Call was forwarded */
-#define IPC_CALL_CONN_ME_TO     (1<<4) /* Identify connect_me_to */
+#define IPC_CALL_CONN_ME_TO     (1<<4) /* Identify connect_me_to answer */
 #define IPC_CALL_NOTIF          (1<<5) /* Interrupt notification */
 
@@ -120,10 +120,23 @@
 /** Interrupt notification */
 #define IPC_M_INTERRUPT         4
+
 /** Send as_area over IPC 
- * - ARG2 - src base address
- * - ARG3 - size of src as(filled automatically by kernel)
+ * - ARG1 - src base address
+ * - ARG2 - size of src as(filled automatically by kernel)
+ * - ARG3 - flags of the area being sent
  * - on answer ARG1 - dst base adress
  */
 #define IPC_M_AS_AREA_SEND      5
+
+/** Get as_area over IPC
+ * - ARG1 - Where the area will be mapped
+ * - ARG2 - Expected size of area
+ * - ARG3 - Requested rights for the area
+ * on answer - the server sets ARG1 as src as address of the as_area
+ * to be shared
+ *
+ *
+ */
+#define IPC_M_AS_AREA_RECV      6
 
 
