SMTP_D.C
资源名称:ertos.rar [点击查看]
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:
操作系统开发
开发平台:
DOS
- /*
- * smtp_d - sample SMTP server
- */
- #include <rtos.h>
- #include <net.h>
- #include <smtpd.h>
- void userproc( char *from, char *to, char *subject)
- {
- printf("got message from '%s' to '%s'nwith subject '%s'n", from, to, subject );
- }
- main()
- {
- int i;
- kdebug = 1;
- rt_init(100);
- kpreemptive = 1; /* enable pre-emptive multithreading */
- sock_init(); /* initialize network */
- cputs("starting...rn");
- #define SMTPD 5
- for ( i = 0 ; i < SMTPD ; ++i )
- rt_newthread( smtpdthread, (DWORD)&userproc, 2048, 0, "smtpd worker" );
- do {
- /* nothing */
- rt_yield();
- } while ( 1 );
- }