/*Socket基础
* A与B发送消息
* */
#include<stdio.h>
#include<taskLib.h>
#include<unistd.h>
#include<sockLib.h>
#include<netinet/in.h>
#include<inetLib.h>
#include<string.h>
#define TASK_PRIORITY_A 130
#define TASK_PRIORITY_B 130
#define STACK_SIZE 225
#define PORT 3733
int taskId_A, taskId_B;
/*定义两个Task*/
void taskA(void);
void taskB(void);
/*服务器ip地址*/
char ip[]="127.0.0.1";
/*服务端地址与客户端地址*/
struct sockaddr_in serAddr, cliAddr;
int len=sizeof(struct sockaddr_in);
int taskDemo() {
/*创建任务:taskSpawn创建并激活任务*/
taskId_A=taskSpawn("taskA", TASK_PRIORITY_A, VX_FP_TASK, STACK_SIZE,
(FUNCPTR)taskA, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
taskId_B=taskSpawn("taskB", TASK_PRIORITY_B, VX_FP_TASK, STACK_SIZE,
(FUNCPTR)taskB, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
if (taskId_A==ERROR)
printf("taskA taskSpawn() failed!\n");
if (taskId_B==ERROR)
printf("taskB taskSpa
vxworks网络通信socket-TCP
最新推荐文章于 2016-11-21 16:33:51 发布
本文详细探讨了在VxWorks操作系统环境下,如何使用TCP Socket进行网络通信。从建立连接到发送和接收消息,阐述了客户端与服务器端的交互过程。通过示例展示了在任务中实现Socket通信的关键步骤。
摘要由CSDN通过智能技术生成