NetBurner 3.5.6
PDF Version
Parallax/src/formtools.h
1/*NB_REVISION*/
2
3/*NB_COPYRIGHT*/
4
5#ifndef FORM_TOOL_H
6#define FORM_TOOL_H
7
8
9/* Functiosn to manage HTML form creation and data extraction */
10
11/* Output a select */
12/* Item 1 = first selection item !!! */
13void FormOutputSelect( int sock, const char *name, int selnum, const char **list );
14
15
16/* Outout a Check box */
17void FormOutputCheckbox( int sock, const char *name, BOOL checked );
18
19/* Output an input box */
20void FormOutputInput( int sock, const char *name, int siz, const char *val );
21
22/* Output an input box for numbers */
23void FormOutputNumInput( int sock, const char *name, int siz, int val );
24
25/*Output an input box for IP addresses */
26void FormOutputIPInput( int sock, const char *name, IPADDR ip );
27
28
29void ShowIP2Sock( int sock, IPADDR ip );
30
31#endif
32
Used to hold and manipulate IPv4 and IPv6 addresses in dual stack mode.
Definition ipv6_addr.h:41