Changeset 325
- Timestamp:
- 05/22/07 18:06:24 (2 years ago)
- Files:
-
- version_0/ext/binder.cpp (modified) (1 diff)
- version_0/ext/binder.h (modified) (1 diff)
- version_0/ext/cmain.cpp (modified) (1 diff)
- version_0/ext/ed.cpp (modified) (2 diffs)
- version_0/ext/ed.h (modified) (1 diff)
- version_0/ext/em.cpp (modified) (1 diff)
- version_0/ext/em.h (modified) (1 diff)
- version_0/ext/emwin.cpp (modified) (1 diff)
- version_0/ext/emwin.h (modified) (1 diff)
- version_0/ext/eventmachine.h (modified) (1 diff)
- version_0/ext/extconf.rb (modified) (1 diff)
- version_0/ext/files.cpp (modified) (1 diff)
- version_0/ext/files.h (modified) (1 diff)
- version_0/ext/page.cpp (modified) (1 diff)
- version_0/ext/page.h (modified) (1 diff)
- version_0/ext/project.h (modified) (1 diff)
- version_0/ext/rubymain.cpp (modified) (1 diff)
- version_0/ext/sigs.cpp (modified) (1 diff)
- version_0/ext/sigs.h (modified) (1 diff)
- version_0/ext/ssl.cpp (modified) (1 diff)
- version_0/ext/ssl.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
version_0/ext/binder.cpp
r54 r325 6 6 Date: 07Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/binder.h
r68 r325 6 6 Date: 07Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/cmain.cpp
r314 r325 3 3 $Id$ 4 4 5 File: libmain.cpp5 File: cmain.cpp 6 6 Date: 06Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by 13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version. 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/ed.cpp
r262 r325 6 6 Date: 06Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by 13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version. 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ … … 52 45 53 46 EventableDescriptor::EventableDescriptor (int sd): 54 EventCallback (NULL),55 LastRead (0),56 LastWritten (0),57 MySocket (sd),58 bCloseNow (false),59 bCloseAfterWriting (false)60 { 61 /* There are three ways to close a socket, all of which should62 * automatically signal to the event machine that this object63 * should be removed from the polling scheduler.64 * First is a hard close, intended for bad errors or possible65 * security violations. It immediately closes the connection66 * and puts this object into an error state.67 * Second is to set bCloseNow, which will cause the event machine68 * to delete this object (and thus close the connection in our69 * destructor) the next chance it gets. bCloseNow also inhibits70 * the writing of new data on the socket (but not necessarily71 * the reading of new data).72 * The third way is to set bCloseAfterWriting, which inhibits73 * the writing of new data and converts to bCloseNow as soon74 * as everything in the outbound queue has been written.75 * bCloseAfterWriting is really for use only by protocol handlers76 * (for example, HTTP writes an HTML page and then closes the77 * connection). All of the error states we generate internally78 * cause an immediate close to be scheduled, which may have the79 * effect of discarding outbound data.80 */81 82 if (sd == INVALID_SOCKET)83 throw std::runtime_error ("bad eventable descriptor");84 CreatedAt = gCurrentLoopTime;47 EventCallback (NULL), 48 LastRead (0), 49 LastWritten (0), 50 MySocket (sd), 51 bCloseNow (false), 52 bCloseAfterWriting (false) 53 { 54 /* There are three ways to close a socket, all of which should 55 * automatically signal to the event machine that this object 56 * should be removed from the polling scheduler. 57 * First is a hard close, intended for bad errors or possible 58 * security violations. It immediately closes the connection 59 * and puts this object into an error state. 60 * Second is to set bCloseNow, which will cause the event machine 61 * to delete this object (and thus close the connection in our 62 * destructor) the next chance it gets. bCloseNow also inhibits 63 * the writing of new data on the socket (but not necessarily 64 * the reading of new data). 65 * The third way is to set bCloseAfterWriting, which inhibits 66 * the writing of new data and converts to bCloseNow as soon 67 * as everything in the outbound queue has been written. 68 * bCloseAfterWriting is really for use only by protocol handlers 69 * (for example, HTTP writes an HTML page and then closes the 70 * connection). All of the error states we generate internally 71 * cause an immediate close to be scheduled, which may have the 72 * effect of discarding outbound data. 73 */ 74 75 if (sd == INVALID_SOCKET) 76 throw std::runtime_error ("bad eventable descriptor"); 77 CreatedAt = gCurrentLoopTime; 85 78 } 86 79 version_0/ext/ed.h
r261 r325 6 6 Date: 06Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by 13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version. 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/em.cpp
r320 r325 3 3 $Id$ 4 4 5 File: e d.cpp5 File: em.cpp 6 6 Date: 06Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat108 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by 13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version. 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/em.h
r314 r325 3 3 $Id$ 4 4 5 File: e d.h5 File: em.h 6 6 Date: 06Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/emwin.cpp
r54 r325 3 3 $Id$ 4 4 5 File: e dwin.cpp5 File: emwin.cpp 6 6 Date: 05May06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat108 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by 13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version. 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/emwin.h
r216 r325 3 3 $Id$ 4 4 5 File: e dwin.h5 File: emwin.h 6 6 Date: 05May06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat108 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/eventmachine.h
r314 r325 6 6 Date: 15Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat108 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/extconf.rb
r70 r325 3 3 #---------------------------------------------------------------------------- 4 4 # 5 # Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved. 6 # 7 # Gmail: garbagecat20 8 # 5 # Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 6 # Gmail: blackhedd 7 # 9 8 # This program is free software; you can redistribute it and/or modify 10 # it under the terms of the GNU General Public License as published by 11 # the Free Software Foundation; either version 2 of the License, or 12 # (at your option) any later version. 13 # 14 # This program is distributed in the hope that it will be useful, 15 # but WITHOUT ANY WARRANTY; without even the implied warranty of 16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 # GNU General Public License for more details. 18 # 19 # You should have received a copy of the GNU General Public License 20 # along with this program; if not, write to the Free Software 21 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 9 # it under the terms of either: 1) the GNU General Public License 10 # as published by the Free Software Foundation; either version 2 of the 11 # License, or (at your option) any later version; or 2) Ruby's License. 12 # 13 # See the file COPYING for complete licensing information. 22 14 # 23 15 #--------------------------------------------------------------------------- version_0/ext/files.cpp
r258 r325 6 6 Date: 26Aug06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/files.h
r258 r325 6 6 Date: 26Aug06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/page.cpp
r54 r325 6 6 Date: 30Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/page.h
r54 r325 6 6 Date: 30Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/project.h
r320 r325 6 6 Date: 06Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/rubymain.cpp
r314 r325 3 3 $Id$ 4 4 5 File: libmain.cpp5 File: rubymain.cpp 6 6 Date: 06Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by 13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version. 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/sigs.cpp
r54 r325 6 6 Date: 06Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/sigs.h
r54 r325 6 6 Date: 06Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/ssl.cpp
r58 r325 6 6 Date: 30Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat108 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by 13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version. 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/ version_0/ext/ssl.h
r54 r325 6 6 Date: 30Apr06 7 7 8 Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.9 Gmail: garbagecat208 Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 9 Gmail: blackhedd 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by13 the Free Software Foundation; either version 2 of the License, or 14 (at your option) any later version.12 it under the terms of either: 1) the GNU General Public License 13 as published by the Free Software Foundation; either version 2 of the 14 License, or (at your option) any later version; or 2) Ruby's License. 15 15 16 This program is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 20 21 You should have received a copy of the GNU General Public License 22 along with this program; if not, write to the Free Software 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 See the file COPYING for complete licensing information. 24 17 25 18 *****************************************************************************/
