1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/*
* A message queue program that shows a client server implementation
* this is the sender program using Message Queues
* aka client
*/
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#define MAX_TEXT 512
struct my_msg_st
{
long int my_msg_type;
char some_text[MAX_TEXT];
pid_t clientPID
}
int main(void)
{
int running = 1;
int msgid;
int this_PID;
char ender[3] = "end";
struct my_msg_st some_data;
some_data.clientPID=getpid();
this_PID=some_data.clientPID;
char buffer[BUFSIZ];
system("clear");
msgid = msgget((key_t)1234, 0666 | IPC_CREAT);
if (msgid == -1)
{
fprintf(stderr,"msgget failed with error : %d ", errno);
exit(EXIT_FAILURE);
}
while(running)
{
//printf("this client pid = %d"some_data.clientPID);
printf("Enter some text : ");
fgets(buffer, BUFSIZ, stdin);
if (strncmp(buffer, ender,3) == 0 )
{ running = 0; }
printf(" Text sent : %s ", buffer);
some_data.my_msg_type = 1;
strcpy(some_data.some_text, buffer);
if (msgsnd(msgid, (void *)&some_data, MAX_TEXT, 0) == -1)
{
// perror("msgsnd error");
fprintf(stderr,"msgsnd failed ");
exit(EXIT_FAILURE);
}
}
exit(EXIT_SUCCESS); |
Partager