Files
harbour-core/include/hbsocket.ch
Przemysław Czerpak b9b235cff9 2014-12-03 00:41 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* include/hbsocket.ch
    + added HB_SOCKET_ERR_NONE

  * src/rtl/hbsocket.c
    * clear socket error when hb_socketRecv*() or hb_socketSend*() returns
      value greater then 0
    % removed unnecessary error code setting in MS-Windows builds
      of hb_socketGetIFaces()

  * src/rtl/filesys.c
    ! allocate dynamically buffer for current directory name if default
      one is too small when current disk is checked

  * src/rtl/hbzlib.c
    * use hb_xalloc()/hb_xfree() to allocate/free memory during
      ZLIB compression and decompression instead of ZLIB default
      ones (finished code started in Viktor's branch)

  * src/rtl/tlabel.prg
  * src/rtl/treport.prg
    % use hb_ATokens() instead of local functions ListAsArray()
    * simplified reading labels and reports from files

  * src/rtl/teditor.prg
  * src/rtl/tget.prg
  * src/rtl/tlabel.prg
  * src/rtl/treport.prg
    * synced with Viktor's branch:
      removed explicit NIL from parameters, formatting, updated comments
      and variable names, use FOR EACH and SWITCH statements,
      use hb_defaultValue(), use hb_StrShrink(), formatting, few fixes

  * src/rtl/langcomp.prg
    * synced with Viktor's branch

  * src/rtl/memoedit.prg
    * synced with Viktor's branch, optimizations, formatting and fixes:
    ; 2014-03-28 13:09 UTC+0100 Viktor Szakats
       + MemoEdit(): allow BLOCK and SYMBOL types for user callbacks
         (only in the default, non-strict mode)
       ! MemoEdit(): fixed to only handle certain types of events in ME_INIT
         stage in harmony with Cl*pper documentation
       ! MemoEdit(): fixed to not get into an infinite loop on initialization
         when user callback is returning unhandled value
         https://github.com/harbour/core/issues/21
       ! MemoEdit()/HBMemoEditor():KeyboardHook(): fixed to fall back to
         default handling of K_ESC if getting called recursively
         https://github.com/harbour/core/issues/21
       + HBMemoEditor():HandleUserKey(): now returns whether the event was
         handled (as logical value) (previously: Self) [INCOMPATIBLE]
       * fixed some misleading variable names
    ; 2014-01-28 03:11 UTC+0100 Viktor Szakáts
       ! MemoEdit() fixed to pass-through without interactivity
         when the user function is a boolean .F.
    ; 2014-01-27 15:15 UTC+0100 Viktor Szakáts
       % abort key checking optimized and made unicode compatible

  * src/rtl/listbox.prg
    * synced with Viktor's branch, optimizations, formatting and fixes:
    ; 2014-07-21 08:56 UTC+0200 Viktor Szakats
       ! ListBox():findData(): fixed to be able to search for non-string
         data, to the same extent Cl*ipper is able to.
       ! ListBox():findData(): fixed exact/case-insensitive regression
         from 6f8508ff54a3955822b36bf4a65a2775a11bab23
    ; 2014-07-21 03:26 UTC+0200 Viktor Szakats
       + LISTBOX object instance area made compatible with Cl*pper
         (relevant when object is accessed as array)
    ; 2014-07-21 01:20 UTC+0200 Viktor Szakats
       * renamed variable and macro to reflect their type
       + ListBox():findData(): documented potential RTE
    ; 2014-07-21 01:04 UTC+0200 Viktor Szakats
       % ListBox():findText(), ListBox():findData(): use hb_LeftEq[I]()
       ! ListBox():findText(), ListBox():findData(): fixed to not RTrim()
         while searching in EXACT mode. Regression from f61409bf19
       + ListBox():findText(), ListBox():findData(): allow to search
         for any type of data in HB_CLP_STRICT mode to mimic Cl*pper behavior
       ! ListBox():findText(): fixed to allow zero length search text,
         like Cl*pper. Regression from 93d3a46d84
       ! ListBox():addItem( cText, cData ): fixed to allow any type for cData,
         not just NIL and string, like Cl*pper
       + ListBox():setData(): documented a Cl*pper bug
    ; 2014-03-09 18:19 UTC+0100 Viktor Szakáts
       ! ListBox():scroll() fixed to ignore non-numeric parameter
         (like Cl*pper) instead of an RTE
2014-12-03 00:41:38 +01:00

213 lines
10 KiB
Plaintext

/*
* Harbour Project source code:
* socket related constant values
*
* Copyright 2009 Przemyslaw Czerpak <druzus / at / priv.onet.pl>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* NOTE: This file is also used by C code. */
#ifndef HB_SOCKET_CH_
#define HB_SOCKET_CH_
/* Harbour socket error codes */
#define HB_SOCKET_ERR_NONE 0
#define HB_SOCKET_ERR_PIPE 1
#define HB_SOCKET_ERR_TIMEOUT 2
#define HB_SOCKET_ERR_WRONGADDR 3
#define HB_SOCKET_ERR_AFNOSUPPORT 4
#define HB_SOCKET_ERR_PFNOSUPPORT 5
#define HB_SOCKET_ERR_PROTONOSUPPORT 6
#define HB_SOCKET_ERR_PARAMVALUE 7
#define HB_SOCKET_ERR_NOSUPPORT 8
#define HB_SOCKET_ERR_NORESOURCE 9
#define HB_SOCKET_ERR_ACCESS 10
#define HB_SOCKET_ERR_ADDRINUSE 11
#define HB_SOCKET_ERR_INTERRUPT 12
#define HB_SOCKET_ERR_ALREADYCONNECTED 13
#define HB_SOCKET_ERR_CONNREFUSED 14
#define HB_SOCKET_ERR_CONNABORTED 15
#define HB_SOCKET_ERR_CONNRESET 16
#define HB_SOCKET_ERR_NETUNREACH 17
#define HB_SOCKET_ERR_NETDOWN 18
#define HB_SOCKET_ERR_NETRESET 19
#define HB_SOCKET_ERR_INPROGRESS 20
#define HB_SOCKET_ERR_ALREADY 21
#define HB_SOCKET_ERR_ADDRNOTAVAIL 22
#define HB_SOCKET_ERR_READONLY 23
#define HB_SOCKET_ERR_AGAIN 24
#define HB_SOCKET_ERR_INVALIDHANDLE 25
#define HB_SOCKET_ERR_INVAL 26
#define HB_SOCKET_ERR_PROTO 27
#define HB_SOCKET_ERR_PROTOTYPE 28
#define HB_SOCKET_ERR_NOFILE 29
#define HB_SOCKET_ERR_NOBUFS 30
#define HB_SOCKET_ERR_NOMEM 31
#define HB_SOCKET_ERR_FAULT 32
#define HB_SOCKET_ERR_NAMETOOLONG 33
#define HB_SOCKET_ERR_NOENT 34
#define HB_SOCKET_ERR_NOTDIR 35
#define HB_SOCKET_ERR_LOOP 36
#define HB_SOCKET_ERR_MSGSIZE 37
#define HB_SOCKET_ERR_DESTADDRREQ 38
#define HB_SOCKET_ERR_NOPROTOOPT 39
#define HB_SOCKET_ERR_NOTCONN 40
#define HB_SOCKET_ERR_SHUTDOWN 41
#define HB_SOCKET_ERR_TOOMANYREFS 42
#define HB_SOCKET_ERR_RESTARTSYS 43
#define HB_SOCKET_ERR_NOSR 44
#define HB_SOCKET_ERR_HOSTDOWN 45
#define HB_SOCKET_ERR_HOSTUNREACH 46
#define HB_SOCKET_ERR_NOTEMPTY 47
#define HB_SOCKET_ERR_USERS 48
#define HB_SOCKET_ERR_DQUOT 49
#define HB_SOCKET_ERR_STALE 50
#define HB_SOCKET_ERR_REMOTE 51
#define HB_SOCKET_ERR_PROCLIM 52
#define HB_SOCKET_ERR_DISCON 53
#define HB_SOCKET_ERR_NOMORE 54
#define HB_SOCKET_ERR_CANCELLED 55
#define HB_SOCKET_ERR_INVALIDPROCTABLE 56
#define HB_SOCKET_ERR_INVALIDPROVIDER 57
#define HB_SOCKET_ERR_PROVIDERFAILEDINIT 58
#define HB_SOCKET_ERR_REFUSED 59
#define HB_SOCKET_ERR_SYSNOTREADY 60
#define HB_SOCKET_ERR_VERNOTSUPPORTED 61
#define HB_SOCKET_ERR_NOTINITIALISED 62
#define HB_SOCKET_ERR_TRYAGAIN 63
#define HB_SOCKET_ERR_HOSTNOTFOUND 64
#define HB_SOCKET_ERR_NORECOVERY 65
#define HB_SOCKET_ERR_NODATA 66
#define HB_SOCKET_ERR_SYSCALLFAILURE 67
#define HB_SOCKET_ERR_SERVICENOTFOUND 68
#define HB_SOCKET_ERR_TYPENOTFOUND 69
#define HB_SOCKET_ERR_OTHER 70
/* address family */
#define HB_SOCKET_AF_LOCAL 1
#define HB_SOCKET_AF_INET 2
#define HB_SOCKET_AF_IPX 4
#define HB_SOCKET_AF_INET6 10
#define HB_SOCKET_AF_PACKET 17
/* protocol family */
#define HB_SOCKET_PF_LOCAL HB_SOCKET_AF_LOCAL
#define HB_SOCKET_PF_INET HB_SOCKET_AF_INET
#define HB_SOCKET_PF_IPX HB_SOCKET_AF_IPX
#define HB_SOCKET_PF_INET6 HB_SOCKET_AF_INET6
#define HB_SOCKET_PF_PACKET HB_SOCKET_AF_PACKET
/* protocol type */
#define HB_SOCKET_PT_STREAM 1
#define HB_SOCKET_PT_DGRAM 2
#define HB_SOCKET_PT_RAW 3
#define HB_SOCKET_PT_RDM 4
#define HB_SOCKET_PT_SEQPACKET 5
/* IP protocols */
#define HB_SOCKET_IPPROTO_IP 0 /* Dummy protocol for TCP */
#define HB_SOCKET_IPPROTO_ICMP 1 /* Internet Control Message Protocol */
#define HB_SOCKET_IPPROTO_IGMP 2 /* Internet Group Management Protocol */
#define HB_SOCKET_IPPROTO_IPIP 4 /* IPIP tunnels (older KA9Q tunnels use 94) */
#define HB_SOCKET_IPPROTO_TCP 6 /* Transmission Control Protocol */
#define HB_SOCKET_IPPROTO_EGP 8 /* Exterior Gateway Protocol */
#define HB_SOCKET_IPPROTO_PUP 12 /* PUP protocol */
#define HB_SOCKET_IPPROTO_UDP 17 /* User Datagram Protocol */
#define HB_SOCKET_IPPROTO_IDP 22 /* XNS IDP protocol */
#define HB_SOCKET_IPPROTO_DCCP 23 /* DCCP protocol */
#define HB_SOCKET_IPPROTO_RDP 29 /* RDP */
#define HB_SOCKET_IPPROTO_TP 29 /* SO Transport Protocol Class 4 */
#define HB_SOCKET_IPPROTO_IPV6 41 /* IPv6 header */
#define HB_SOCKET_IPPROTO_ROUTING 43 /* IPv6 routing header */
#define HB_SOCKET_IPPROTO_FRAGMENT 44 /* IPv6 fragmentation header */
#define HB_SOCKET_IPPROTO_RSVP 46 /* Reservation Protocol */
#define HB_SOCKET_IPPROTO_GRE 47 /* General Routing Encapsulation */
#define HB_SOCKET_IPPROTO_ESP 50 /* Encapsulating security payload */
#define HB_SOCKET_IPPROTO_AH 51 /* Authentication header */
#define HB_SOCKET_IPPROTO_ICMPV6 58 /* ICMP v6 */
#define HB_SOCKET_IPPROTO_NONE 59 /* IPv6 no next header */
#define HB_SOCKET_IPPROTO_DSTOPTS 60 /* IPv6 destination options */
#define HB_SOCKET_IPPROTO_ND 77 /* ND */
#define HB_SOCKET_IPPROTO_ICLFXBM 78 /* ICLFXBM */
#define HB_SOCKET_IPPROTO_EON 80 /* EON */
#define HB_SOCKET_IPPROTO_MTP 92 /* Multicast Transport Protocol */
#define HB_SOCKET_IPPROTO_ENCAP 98 /* Encapsulation Header */
#define HB_SOCKET_IPPROTO_PIM 103 /* Protocol Independent Multicast */
#define HB_SOCKET_IPPROTO_COMP 108 /* Compression Header Protocol */
#define HB_SOCKET_IPPROTO_PGM 113 /* PGM */
#define HB_SOCKET_IPPROTO_L2TP 115 /* L2TP */
#define HB_SOCKET_IPPROTO_SCTP 132 /* Stream Control Transmission Protocol */
#define HB_SOCKET_IPPROTO_RAW 255 /* Raw IP packets */
/* shutdown actions */
#define HB_SOCKET_SHUT_RD 0
#define HB_SOCKET_SHUT_WR 1
#define HB_SOCKET_SHUT_RDWR 2
/* interface information flags */
#define HB_SOCKET_IFF_UP 0x0001 /* Interface is up */
#define HB_SOCKET_IFF_BROADCAST 0x0002 /* Broadcast address valid */
#define HB_SOCKET_IFF_LOOPBACK 0x0004 /* Is a loopback net */
#define HB_SOCKET_IFF_POINTOPOINT 0x0008 /* Interface is point-to-point link */
#define HB_SOCKET_IFF_MULTICAST 0x0010 /* Supports multicast */
/* Harbour interface information indexes */
#define HB_SOCKET_IFINFO_FAMILY 1 /* adress family */
#define HB_SOCKET_IFINFO_NAME 2 /* interface name */
#define HB_SOCKET_IFINFO_FLAGS 3 /* flags HB_SOCKET_IFF_* */
#define HB_SOCKET_IFINFO_ADDR 4 /* interface address */
#define HB_SOCKET_IFINFO_NETMASK 5 /* subnetmask */
#define HB_SOCKET_IFINFO_BROADCAST 6 /* broadcast address */
#define HB_SOCKET_IFINFO_P2PADDR 7 /* point-to-point address */
#define HB_SOCKET_IFINFO_HWADDR 8 /* hardware address */
#define HB_SOCKET_IFINFO_LEN 8
/* Socket address array indexes */
#define HB_SOCKET_ADINFO_FAMILY 1
#define HB_SOCKET_ADINFO_ADDRESS 2 /* HB_SOCKET_AF_INET, HB_SOCKET_AF_INET6 */
#define HB_SOCKET_ADINFO_PATH 2 /* HB_SOCKET_AF_LOCAL */
#define HB_SOCKET_ADINFO_PORT 3 /* HB_SOCKET_AF_INET, HB_SOCKET_AF_INET6 */
#endif /* HB_SOCKET_CH_ */