| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /*!
- * Copyright (C) 2002 by Call Direct Cellular Solutions Pty. Ltd. All rights reserved
- * Copyright (C) 2001-2004 by egnite Software GmbH
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the copyright holders nor the names of
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY CALL DIRECT CELLULAR SOLUTIONS AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CALL DIRECT
- * CELLULAR SOLUTIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
- * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- *
- * For additional information see http://www.calldirect.com.au/
- * For additional information see http://www.ethernut.de/
- */
- /*!
- * \file net/pppout.c
- * \brief PPP output functions.
- *
- * \verbatim
- * $Id: pppout.c 5505 2014-01-01 11:15:16Z mifi $
- * \endverbatim
- */
- #include <cfg/os.h>
- #include <string.h>
- #include <dev/ppp.h>
- #include <dev/ahdlc.h>
- #include <netinet/in.h>
- #include <netinet/if_ppp.h>
- #include <net/ppp.h>
- #include <sys/types.h>
- #include <sys/timer.h>
- #ifdef NUTDEBUG
- #include <net/netdebug.h>
- #endif
- /*!
- * \addtogroup xgPPP
- */
- /*@{*/
- /*!
- * \brief Send PPP frame.
- *
- * Send a PPP frame of a given type using the specified device.
- *
- * \param dev Identifies the network device to use.
- * \param type Type of this frame.
- * \param ha Hardware address of the destination, ignored with PPP.
- * \param nb Network buffer structure containing the packet to be sent.
- * The structure must have been allocated by a previous
- * call NutNetBufAlloc() and will be freed if this function
- * returns with an error.
- *
- * \return 0 on success, -1 in case of any errors.
- */
- int NutPppOutput(NUTDEVICE * dev, uint16_t type, uint8_t * ha, NETBUF * nb)
- {
- PPPHDR *ph;
- IFNET *nif = dev->dev_icb;
- PPPDCB *dcb = dev->dev_dcb;
- (void)ha;
- /*
- * Allocate and set the HDLC header.
- */
- if (NutNetBufAlloc(nb, NBAF_DATALINK, sizeof(PPPHDR)) == 0)
- return -1;
- ph = (PPPHDR *) nb->nb_dl.vp;
- ph->address = AHDLC_ALLSTATIONS;
- ph->control = AHDLC_UI;
- ph->prot_type = htons(type);
- #ifdef NUTDEBUG
- if (__ppp_trf) {
- fputs("\nPPP<", __ppp_trs);
- NutDumpPpp(__ppp_trs, nb);
- }
- #elif defined(__IMAGECRAFT__)
- /*
- * No idea what this is, but ICCAVR fails if this call isn't there.
- */
- NutSleep(100);
- #endif
- /*
- * Call the physical device output routine.
- */
- if (nif->if_send && (*nif->if_send) ((((NUTFILE *) (uintptr_t) (dcb->dcb_fd)))->nf_dev, nb) == 0) {
- return 0;
- }
- NutNetBufFree(nb);
- return -1;
- }
- /*@}*/
|