You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
1.9KB

  1. #include <unistd.h>
  2. #include <math.h>
  3. #include <stdio.h>
  4. #include <fcntl.h>
  5. #include <termios.h>
  6. #include <string.h>
  7. #include <stdlib.h>
  8. #include <sched.h>
  9. #include <sys/time.h>
  10. #include <sys/types.h>
  11. #include <sys/socket.h>
  12. #include <sys/poll.h>
  13. #include <sys/resource.h>
  14. #include <arpa/inet.h>
  15. #include <netinet/in.h>
  16. #include "licks_message.h"
  17. int socket_fd;
  18. struct pollfd poll_pollfd;
  19. struct timespec timeout_ts;
  20. struct sockaddr_in localaddr;
  21. struct sockaddr_in remoteaddr;
  22. socklen_t remoteaddr_len;
  23. const int port=1337;
  24. void
  25. licks_socket_open() {
  26. socket_fd=socket(PF_INET,SOCK_DGRAM,0);
  27. if(socket_fd==-1) {
  28. perror("socket");
  29. exit(0);
  30. }
  31. printf("socket %d\n",socket_fd);
  32. localaddr.sin_family=AF_INET;
  33. localaddr.sin_port=htons(port);
  34. inet_aton("0.0.0.0",&localaddr.sin_addr);
  35. if(bind(socket_fd,(struct sockaddr *)&localaddr,sizeof(struct sockaddr_in))) {
  36. perror("bind");
  37. exit(0);
  38. }
  39. // printf("bound to %s\n",localaddr.sun_path);
  40. poll_pollfd.fd=socket_fd;
  41. poll_pollfd.events=POLLIN;
  42. remoteaddr.sin_family=AF_INET;
  43. }
  44. int
  45. licks_socket_poll() {
  46. return poll(&poll_pollfd,1,0);
  47. }
  48. void
  49. licks_socket_close() {
  50. close(socket_fd);
  51. }
  52. //void
  53. //send_message(licks_message *m, char *to) {
  54. // strcpy(remoteaddr.sin_path,to);
  55. // sendto(socket_fd,m,sizeof(licks_message),0,(struct sockaddr *)&remoteaddr,sizeof(struct sockaddr_in));
  56. //}
  57. void
  58. send_reply(licks_message *m) {
  59. sendto(socket_fd,m,strlen(m),0,(struct sockaddr *)&remoteaddr,sizeof(struct sockaddr_in));
  60. }
  61. char *
  62. receive_message(licks_message *m) {
  63. size_t real_len;
  64. remoteaddr_len=sizeof(struct sockaddr_in);
  65. memset(m,0,sizeof(licks_message));
  66. real_len=recvfrom(socket_fd,m,sizeof(licks_message)-1,0,(struct sockaddr *)&remoteaddr,&remoteaddr_len);
  67. return 0;
  68. }