mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-01 08:24:52 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
32 lines
606 B
C
32 lines
606 B
C
#ifndef HANDLER_H_INCLUDED
|
|
#define HANDLER_H_INCLUDED
|
|
|
|
#include "bool.h"
|
|
#include "xmlrpc-c/abyss.h"
|
|
|
|
typedef struct BIHandler BIHandler;
|
|
|
|
BIHandler *
|
|
HandlerCreate(void);
|
|
|
|
void
|
|
HandlerDestroy(BIHandler * const handlerP);
|
|
|
|
|
|
void
|
|
HandlerSetMimeType(BIHandler * const handlerP,
|
|
MIMEType * const mimeTypeP);
|
|
|
|
void
|
|
HandlerSetFilesPath(BIHandler * const handlerP,
|
|
const char * const filesPath);
|
|
|
|
void
|
|
HandlerAddDefaultFN(BIHandler * const handlerP,
|
|
const char * const fileName);
|
|
|
|
abyss_bool
|
|
HandlerDefaultBuiltin(TSession * const sessionP);
|
|
|
|
#endif
|