Changeset ffa2c8ef in mainline for uspace/srv/net/tl/tcp/tcp.c
- Timestamp:
- 2011-01-29T11:36:08Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 46b881c
- Parents:
- 64d2b10
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/tcp/tcp.c
r64d2b10 rffa2c8ef 44 44 #include <errno.h> 45 45 46 #include <ipc/ipc.h>47 46 #include <ipc/services.h> 48 47 #include <ipc/net.h> … … 1506 1505 1507 1506 /* Release the application phone */ 1508 ipc_hangup(app_phone);1507 async_hangup(app_phone); 1509 1508 1510 1509 printf("release\n"); … … 2454 2453 SERVICE_TCP, IPC_GET_ERROR(*icall)); 2455 2454 2456 ipc_answer_0(iid, (sysarg_t) rc);2455 async_answer_0(iid, (sysarg_t) rc); 2457 2456 break; 2458 2457 default: 2459 ipc_answer_0(iid, (sysarg_t) ENOTSUP);2458 async_answer_0(iid, (sysarg_t) ENOTSUP); 2460 2459 } 2461 2460
Note:
See TracChangeset
for help on using the changeset viewer.