sockets.cpp 311 B

1234567891011121314151617181920
  1. /*
  2. * socket.c
  3. *
  4. * Created on: Nov 27, 2017
  5. * Author: anay
  6. */
  7. #include "Connection/sockets.h"
  8. #include <sockets.h>
  9. #include "inet/src/inet/transportlayer/contract/udp/UDPSocket.h"
  10. using namespace inet;
  11. define_Socket::define_Socket(int port)
  12. {
  13. UDPSocket udpsocket;
  14. udpsocket.bind(port);
  15. }