📄 fifo-msg-client.cpp
字号:
// FIFO-Msg-client.cpp,v 4.7 2003/11/01 11:15:23 dhinton Exp
#include "ace/FIFO_Send_Msg.h"
#include "ace/OS_NS_stdio.h"
#include "ace/OS_main.h"
#include "ace/OS_NS_stdlib.h"
#include "ace/OS_NS_time.h"
#include "ace/OS_NS_string.h"
ACE_RCSID(FIFO_SAP, FIFO_Msg_client, "FIFO-Msg-client.cpp,v 4.7 2003/11/01 11:15:23 dhinton Exp")
#if defined (ACE_HAS_STREAM_PIPES)
int
ACE_TMAIN (int, ACE_TCHAR *[])
{
ACE_FIFO_Send_Msg client (ACE_DEFAULT_RENDEZVOUS);
char buf[BUFSIZ];
ACE_Str_Buf msg (buf);
ACE_OS::srand (unsigned (ACE_OS::time (0)));
while (ACE_OS::fgets (buf, sizeof buf, stdin) != 0)
{
msg.len = ACE_OS::strlen (buf) + 1;
if (client.send (ACE_OS::rand () % 11, &msg) == -1)
::perror ("send");
}
if (client.close () == -1)
ACE_OS::perror ("close"), ACE_OS::exit (1);
return 0;
}
#else
#include "ace/os_include/os_stdio.h"
int ACE_TMAIN (int, ACE_TCHAR *[])
{
ACE_OS::fprintf (stderr, "This feature is not supported\n");
return 0;
}
#endif /* ACE_HAS_STREAM_PIPES */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -