chiark / gitweb /
*** empty log message ***
[sympathy.git] / apps / sympathyd.c
index 8bed9296bb5f1445ea020d0346e0ac5f3efa9c30..a535ac6a34c7a7bb38e63ca8c73ea0f87c5b3e26 100644 (file)
@@ -10,13 +10,44 @@ static char rcsid[] = "$Id$";
 
 /*
  * $Log$
+ * Revision 1.2  2008/02/07 15:42:49  james
+ * *** empty log message ***
+ *
  * Revision 1.1  2008/02/05 14:25:49  james
  * *** empty log message ***
  *
  */
 
 #include "sympathy.h"
+#include "ipc.h"
 
 int main(int argc,char *argv[])
 {
+int fd;
+struct sockaddr_un sun={0};
+
+fd=socket(PF_UNIX,SOCK_STREAM,0);
+if (fd<0) {
+       perror("socket");
+       exit(1);
+}
+
+sun.sun_family=AF_UNIX;
+strcpy(sun.sun_path,SOCKPATH);
+
+unlink(SOCKPATH);
+
+if (bind(fd,(struct sockaddr *) &sun,sizeof(sun))<0)  {
+       perror("bind");
+       exit(1);
+}
+
+if (listen(fd,5)<0) {
+       perror("listen");
+       exit(1);
+}
+
+
+
+
 }