mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-19 18:42:06 -05:00
Removed unneeded header files from includes.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@395 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
4ad0b09406
commit
182dcfed04
@ -1,10 +1,14 @@
|
|||||||
|
/* The following don't seem to be needed?
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#include <arpa/inet.h>
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <string.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#define HELLO_PORT 50004
|
#define HELLO_PORT 50004
|
||||||
#define HELLO_GROUP "239.255.0.0"
|
#define HELLO_GROUP "239.255.0.0"
|
||||||
|
11
plrs_subs.c
11
plrs_subs.c
@ -1,11 +1,14 @@
|
|||||||
|
/* The following don't seem to be needed?
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#include <arpa/inet.h>
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <string.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#define HELLO_PORT 50004
|
#define HELLO_PORT 50004
|
||||||
#define HELLO_GROUP "239.255.0.0"
|
#define HELLO_GROUP "239.255.0.0"
|
||||||
@ -20,7 +23,7 @@ void setup_ssocket_(void)
|
|||||||
/* create what looks like an ordinary UDP socket */
|
/* create what looks like an ordinary UDP socket */
|
||||||
if ((fd=socket(AF_INET,SOCK_DGRAM,0)) < 0) {
|
if ((fd=socket(AF_INET,SOCK_DGRAM,0)) < 0) {
|
||||||
perror("socket");
|
perror("socket");
|
||||||
exit(1);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* set up destination address */
|
/* set up destination address */
|
||||||
@ -35,5 +38,5 @@ void send_pkt_(char buf[])
|
|||||||
if (sendto(fd,buf,1416,0,(struct sockaddr *) &addr,
|
if (sendto(fd,buf,1416,0,(struct sockaddr *) &addr,
|
||||||
sizeof(addr)) < 0) {
|
sizeof(addr)) < 0) {
|
||||||
perror("sendto");
|
perror("sendto");
|
||||||
exit(1);}
|
exit(EXIT_FAILURE);}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user