X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/84aa9f9339ef6fa104588dd510c433ef20a96fe1..477b12ff719d3749b8d8f85035bd6384fee9be0d:/lib/speaker-protocol.c
diff --git a/lib/speaker-protocol.c b/lib/speaker-protocol.c
index ab8b4ee..4928091 100644
--- a/lib/speaker-protocol.c
+++ b/lib/speaker-protocol.c
@@ -2,30 +2,26 @@
* This file is part of DisOrder.
* Copyright (C) 2005, 2007 Richard Kettlewell
*
- * This program is free software; you can redistribute it and/or modify
+ * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
* You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- * USA
+ * along with this program. If not, see .
*/
/** @file lib/speaker-protocol.c
* @brief Speaker/server protocol support
*/
-#include
-#include "types.h"
+#include "common.h"
#include
-#include
#include
#include
#include
@@ -44,7 +40,7 @@ void speaker_send(int fd, const struct speaker_message *sm) {
ret = write(fd, sm, sizeof *sm);
} while(ret < 0 && errno == EINTR);
if(ret < 0)
- fatal(errno, "write");
+ disorder_fatal(errno, "write");
}
/** @brief Receive a speaker message
@@ -59,7 +55,8 @@ int speaker_recv(int fd, struct speaker_message *sm) {
ret = read(fd, sm, sizeof *sm);
} while(ret < 0 && errno == EINTR);
if(ret < 0) {
- if(errno != EAGAIN) fatal(errno, "recvmsg");
+ if(errno != EAGAIN)
+ disorder_fatal(errno, "recvmsg");
return -1;
}
return ret;