src/JavaSocket.st
branchjk_new_structure
changeset 1108 847291fc77d7
child 1152 040cba55a7d2
equal deleted inserted replaced
1107:cd93fefe9b2c 1108:847291fc77d7
       
     1 "
       
     2  COPYRIGHT (c) 1996-2011 by Claus Gittinger
       
     3  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
       
     4                             SWING Research Group, Czech Technical University in Prague
       
     5 
       
     6  Parts of the code written by Claus Gittinger are under following
       
     7  license:
       
     8 
       
     9  This software is furnished under a license and may be used
       
    10  only in accordance with the terms of that license and with the
       
    11  inclusion of the above copyright notice.   This software may not
       
    12  be provided or otherwise made available to, or used by, any
       
    13  other person.  No title to or ownership of the software is
       
    14  hereby transferred.
       
    15 
       
    16  Parts of the code written at SWING Reasearch Group [1] are MIT licensed:
       
    17 
       
    18  Permission is hereby granted, free of charge, to any person
       
    19  obtaining a copy of this software and associated documentation
       
    20  files (the 'Software'), to deal in the Software without
       
    21  restriction, including without limitation the rights to use,
       
    22  copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    23  copies of the Software, and to permit persons to whom the
       
    24  Software is furnished to do so, subject to the following
       
    25  conditions:
       
    26 
       
    27  The above copyright notice and this permission notice shall be
       
    28  included in all copies or substantial portions of the Software.
       
    29 
       
    30  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    31  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    32  OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    33  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    34  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    35  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    36  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    37  OTHER DEALINGS IN THE SOFTWARE.
       
    38 
       
    39  [1] Code written at SWING Research Group contain a signature
       
    40      of one of the above copright owners.
       
    41 "
       
    42 "{ Package: 'stx:libjava' }"
       
    43 
       
    44 Socket subclass:#JavaSocket
       
    45 	instanceVariableNames:'options'
       
    46 	classVariableNames:'Defaults'
       
    47 	poolDictionaries:''
       
    48 	category:'Languages-Java-Support'
       
    49 !
       
    50 
       
    51 !JavaSocket class methodsFor:'documentation'!
       
    52 
       
    53 copyright
       
    54 "
       
    55  COPYRIGHT (c) 1996-2011 by Claus Gittinger
       
    56  COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
       
    57                             SWING Research Group, Czech Technical University in Prague
       
    58 
       
    59  Parts of the code written by Claus Gittinger are under following
       
    60  license:
       
    61 
       
    62  This software is furnished under a license and may be used
       
    63  only in accordance with the terms of that license and with the
       
    64  inclusion of the above copyright notice.   This software may not
       
    65  be provided or otherwise made available to, or used by, any
       
    66  other person.  No title to or ownership of the software is
       
    67  hereby transferred.
       
    68 
       
    69  Parts of the code written at SWING Reasearch Group [1] are MIT licensed:
       
    70 
       
    71  Permission is hereby granted, free of charge, to any person
       
    72  obtaining a copy of this software and associated documentation
       
    73  files (the 'Software'), to deal in the Software without
       
    74  restriction, including without limitation the rights to use,
       
    75  copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    76  copies of the Software, and to permit persons to whom the
       
    77  Software is furnished to do so, subject to the following
       
    78  conditions:
       
    79 
       
    80  The above copyright notice and this permission notice shall be
       
    81  included in all copies or substantial portions of the Software.
       
    82 
       
    83  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    84  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    85  OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    86  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    87  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    88  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    89  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    90  OTHER DEALINGS IN THE SOFTWARE.
       
    91 
       
    92  [1] Code written at SWING Research Group contain a signature
       
    93      of one of the above copright owners.
       
    94 
       
    95 "
       
    96 ! !
       
    97 
       
    98 !JavaSocket class methodsFor:'initialization'!
       
    99 
       
   100 initialize
       
   101     "Invoked at system start or when the class is dynamically loaded."
       
   102 
       
   103     "/ please change as required (and remove this comment)
       
   104 
       
   105     Defaults := Dictionary new.
       
   106     Defaults at: #TCP_NODELAY put: false.
       
   107     Defaults at: #SO_LINGER put: -1.
       
   108 
       
   109     "Modified: / 13-11-2011 / 23:07:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   110 ! !
       
   111 
       
   112 !JavaSocket methodsFor:'options'!
       
   113 
       
   114 getSocketOption: option  
       
   115 
       
   116     options isNil ifTrue:[options := Dictionary new].
       
   117     ^options at: option ifAbsent:[Defaults at: option ifAbsent:[false]]
       
   118 
       
   119     "Created: / 13-11-2011 / 20:54:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   120 !
       
   121 
       
   122 setSocketOption: option argument: arg1 argument: arg2  
       
   123 
       
   124     super setSocketOption: option argument: arg1 argument: arg2.
       
   125     options isNil ifTrue:[options := Dictionary new].
       
   126     option == #SO_LINGER ifTrue:[
       
   127         arg1 == false ifTrue:[
       
   128             options at: option put: -1
       
   129         ] ifFalse:[
       
   130             options at: option put: arg2
       
   131         ].
       
   132     ] ifFalse:[
       
   133         options at: option put: arg1
       
   134     ]
       
   135 
       
   136     "Created: / 13-11-2011 / 20:51:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   137 ! !
       
   138 
       
   139 !JavaSocket class methodsFor:'documentation'!
       
   140 
       
   141 version_SVN
       
   142     ^ '$Id$'
       
   143 ! !
       
   144 
       
   145 JavaSocket initialize!