File: dpm_testgetprotocols.c

package info (click to toggle)
dpm-postgres 1.7.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 13,788 kB
  • ctags: 10,782
  • sloc: ansic: 146,136; sh: 13,362; perl: 11,142; python: 5,529; cpp: 5,113; sql: 1,790; makefile: 955; fortran: 113
file content (22 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <sys/types.h>
#include "dpm_api.h"
#include "serrno.h"
main()
{
	int i;
	int nb_supported_protocols;
	char **supported_protocols;

	if (dpm_getprotocols (&nb_supported_protocols, &supported_protocols) < 0) {
		sperror ("dpm_getprotocols");
		exit (2);
	}
	printf ("Supported protocols are:");
	for (i = 0; i < nb_supported_protocols; i++) {
		printf (" %s", supported_protocols[i]);
		free (supported_protocols[i]);
	}
	printf ("\n");
	free (supported_protocols);
	exit (0);
}