test01.lc 570 B

1234567891011121314151617
  1. #include "unpxti.h"## 1 ##src/debug/test01.c##
  2. int## 2 ##src/debug/test01.c##
  3. main(int argc, char **argv)## 3 ##src/debug/test01.c##
  4. {## 4 ##src/debug/test01.c##
  5. int tfd;## 5 ##src/debug/test01.c##
  6. if (argc != 3)## 6 ##src/debug/test01.c##
  7. err_quit("usage: test01 <hostname/IPaddress> <service/port#>");## 7 ##src/debug/test01.c##
  8. tfd = Tcp_connect(argv[1], argv[2]);## 8 ##src/debug/test01.c##
  9. t_snd(tfd, "", 1, T_EXPEDITED);## 9 ##src/debug/test01.c##
  10. exit(0);## 10 ##src/debug/test01.c##
  11. }## 11 ##src/debug/test01.c##