source: rtems-libbsd/rtemsbsd/telnetd/telnetd-init.c @ f0aaa04

55-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since f0aaa04 was 65c65bb, checked in by Chris Johns <chrisj@…>, on 07/01/16 at 05:49:52

Add telnetd as service to rc.conf.

  • Property mode set to 100644
File size: 703 bytes
Line 
1/***********************************************************/
2/*
3 *
4 *  The telnet DAEMON
5 *
6 *  Author: 17,may 2001
7 *
8 *   WORK: fernando.ruiz@ctv.es
9 *   HOME: correo@fernando-ruiz.com
10 *
11 * Copyright (c) 2009 embedded brains GmbH and others.
12 *
13 * embedded brains GmbH
14 * Obere Lagerstr. 30
15 * D-82178 Puchheim
16 * Germany
17 * <rtems@embedded-brains.de>
18 *
19 * The license and distribution terms for this file may be
20 * found in the file LICENSE in this distribution or at
21 * http://www.rtems.org/license/LICENSE.
22 */
23
24#ifdef HAVE_CONFIG_H
25#include "config.h"
26#endif
27
28#include <rtems/telnetd.h>
29
30rtems_status_code rtems_telnetd_initialize(void)
31{
32  return rtems_telnetd_start(&rtems_telnetd_config);
33}
Note: See TracBrowser for help on using the repository browser.