summaryrefslogtreecommitdiff
path: root/test/clsocket/QueryDayTime.cpp
blob: 46084256d6c7bab2ff52cdf640db2597ca705005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

#include <string.h>
#include "ActiveSocket.h"       // Include header for active socket object definition

int main(int argc, char **argv)
{
    CActiveSocket socket;       // Instantiate active socket object (defaults to TCP).
    char          time[50];

    memset(&time, 0, 50);

    //--------------------------------------------------------------------------
    // Initialize our socket object 
    //--------------------------------------------------------------------------
    socket.Initialize();

    //--------------------------------------------------------------------------
    // Create a connection to the time server so that data can be sent
    // and received.
    //--------------------------------------------------------------------------
//    if (socket.Open("time-C.timefreq.bldrdoc.gov", 13))
      if (socket.Open("127.0.0.1", 6789))
  {
        //----------------------------------------------------------------------
        // Send a requtest the server requesting the current time.
        //----------------------------------------------------------------------
		char data[1024];
		sprintf(data,"%s","Hello!");
		int len = strlen(data);
		data[len]=0;
		len++;
        if (socket.Send((const uint8 *)data, len))
        {
            //----------------------------------------------------------------------
            // Receive response from the server.
            //----------------------------------------------------------------------
            socket.Receive(len);
			uint8* data = socket.GetData();
            memcpy(&time, data, len);
            printf("%s\n", time);

            //----------------------------------------------------------------------
            // Close the connection.
            //----------------------------------------------------------------------
            socket.Close();
        }
    }


    return 1;
}