summaryrefslogtreecommitdiff
path: root/lib/examples/client.c
blob: 37601b6e3ff0777fcb0511c69a18c1f855befbf7 (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
/* RADIUS client doing blocking i/o.  */

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "../libradsec.h"
#include "../debug.h"

#define SECRET "sikrit"
#define USER_NAME "bob"
#define USER_PW "hemligt"

int
rsx_client (const char *srvname, int srvport)
{
  struct rs_context *h;
  struct rs_connecion *conn;
  struct rs_packet *req, *resp;

  if (rs_context_create (&h, "/usr/share/freeradius/dictionary"))
    return rs_err_code (rs_ctx_err_code (h));

  if (rs_conn_new (h, &conn))
    return rs_err_code (rs_conn_err_code (conn));
  if (rs_conn_add_server (conn, RS_CONN_TYPE_UDP, srvname, srvport, 10, 3, SECRET))
    return rs_err_code (rs_conn_err_code (conn));

  if (rs_packet_create_acc_request (conn, &req, USER_NAME, USER_PW))
    return rs_err_code (rs_conn_err_code (conn));

  if (rs_packet_send (req))
    return rs_err_code (rs_conn_err_code (conn));
  req = NULL;

  if (rs_packet_recv (conn, &resp))
    return rs_err_code (rs_conn_err_code (conn));

  rs_conn_destroy (conn);
  rs_context_destroy (h);
}

int
main (int argc, char *argv[])
{
  exit (rsx_client ());
}