| 1 | /* sockadapt.h
|
|---|
| 2 | *
|
|---|
| 3 | * Authors: Charles Bailey [email protected]
|
|---|
| 4 | * David Denholm [email protected]
|
|---|
| 5 | * Last Revised: 4-Mar-1997
|
|---|
| 6 | *
|
|---|
| 7 | * This file should include any other header files and procide any
|
|---|
| 8 | * declarations, typedefs, and prototypes needed by perl for TCP/IP
|
|---|
| 9 | * operations.
|
|---|
| 10 | *
|
|---|
| 11 | * This version is set up for perl5 with socketshr 0.9D TCP/IP support.
|
|---|
| 12 | */
|
|---|
| 13 |
|
|---|
| 14 | #ifndef __SOCKADAPT_INCLUDED
|
|---|
| 15 | #define __SOCKADAPT_INCLUDED 1
|
|---|
| 16 |
|
|---|
| 17 | #if defined(DECCRTL_SOCKETS)
|
|---|
| 18 | /* Use builtin socket interface in DECCRTL and
|
|---|
| 19 | * UCX emulation in whatever TCP/IP stack is present.
|
|---|
| 20 | * Provide prototypes for missing routines; stubs are
|
|---|
| 21 | * in sockadapt.c.
|
|---|
| 22 | */
|
|---|
| 23 | # include <socket.h>
|
|---|
| 24 | # include <inet.h>
|
|---|
| 25 | # include <in.h>
|
|---|
|
|---|