File: componentHTTP.c

package info (click to toggle)
vdr-plugin-streamdev 0.6.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,192 kB
  • sloc: ansic: 16,317; sh: 237; makefile: 203
file content (18 lines) | stat: -rw-r--r-- 370 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 *  componentHTTP.c
 */
 
#include "server/componentHTTP.h"
#include "server/connectionHTTP.h"
#include "server/setup.h"

cComponentHTTP::cComponentHTTP(void):
		cServerComponent("HTTP", StreamdevServerSetup.HTTPBindIP, 
		                 StreamdevServerSetup.HTTPServerPort) 
{
}

cServerConnection *cComponentHTTP::NewClient(void)
{
	return new cConnectionHTTP;
}