www.nico.schottelius.org/software/cinit/browse_source/cinit-0.0.4/client/begin_msg.c

25 lines
405 B
C

/*
* (c) 2005 Nico Schottelius (nico-linux at schottelius.org)
* tell cinit that I want to start a service
* part of cinit
*/
#include <unistd.h>
#include <stdio.h>
#include "cinit.h"
int begin_msg(char cmd)
{
sock = connect_sock(sock);
if( sock == -1 ) {
return 0;
}
if(write(sock,&cmd,sizeof(cmd)) == -1) {
perror("i/o: command");
return 0;
}
return 1;
}