|
Revision 24eac7c456bb2802cf4a695e79f812cc3a0b4b0c, 507 bytes
(checked in by Theo Schlossnagle <jesus@omniti.com>, 4 years ago)
|
variety of stuff. fixing some bugs and adding checks into the data model, refs #122
|
- Property mode set to
100644
|
| Line | |
|---|
| 1 |
/* |
|---|
| 2 |
* Copyright (c) 2007, OmniTI Computer Consulting, Inc. |
|---|
| 3 |
* All rights reserved. |
|---|
| 4 |
*/ |
|---|
| 5 |
|
|---|
| 6 |
#ifndef _NOIT_STRATCON_IEP_H |
|---|
| 7 |
#define _NOIT_STRATCON_IEP_H |
|---|
| 8 |
|
|---|
| 9 |
#include "noit_defines.h" |
|---|
| 10 |
#include "eventer/eventer.h" |
|---|
| 11 |
#include "utils/noit_hash.h" |
|---|
| 12 |
#include "stratcon_datastore.h" |
|---|
| 13 |
|
|---|
| 14 |
#include <sys/types.h> |
|---|
| 15 |
#include <sys/socket.h> |
|---|
| 16 |
|
|---|
| 17 |
API_EXPORT(void) |
|---|
| 18 |
stratcon_iep_init(); |
|---|
| 19 |
|
|---|
| 20 |
API_EXPORT(void) |
|---|
| 21 |
stratcon_iep_line_processor(stratcon_datastore_op_t op, |
|---|
| 22 |
struct sockaddr *remote, void *operand); |
|---|
| 23 |
|
|---|
| 24 |
#endif |
|---|