Changeset 35004

Show
Ignore:
Timestamp:
08/24/09 05:03:28 (4 years ago)
Author:
kazuho
Message:

add license

Location:
platform/mysql/mycached/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • platform/mysql/mycached/trunk/mycached.cc

    r34991 r35004  
     1/* 
     2 * mycached - memcached protocol handler for mysqld 
     3 *  
     4 * Copyright (C) 2009 Cybozu Labs, Inc. 
     5 *  
     6 * This program is free software; you can redistribute it and/or modify it under 
     7 * the terms of the GNU General Public License as published by the FreeSoftware 
     8 * Foundation; either version 2 of the License. 
     9 *  
     10 * This program is distributed in the hope that it will be useful, but WITHOUT 
     11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
     12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 
     13 * details. 
     14 *  
     15 * You should have received a copy of the GNU General Public License along with 
     16 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple 
     17 * Place, Suite 330, Boston, MA 02111-1307 USA 
     18 */ 
     19 
    120extern "C" { 
    221#include <sys/uio.h> 
  • platform/mysql/mycached/trunk/mycached.hh

    r34991 r35004  
     1/* 
     2 * mycached - memcached protocol handler for mysqld 
     3 *  
     4 * Copyright (C) 2009 Cybozu Labs, Inc. 
     5 *  
     6 * This program is free software; you can redistribute it and/or modify it under 
     7 * the terms of the GNU General Public License as published by the FreeSoftware 
     8 * Foundation; either version 2 of the License. 
     9 *  
     10 * This program is distributed in the hope that it will be useful, but WITHOUT 
     11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
     12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 
     13 * details. 
     14 *  
     15 * You should have received a copy of the GNU General Public License along with 
     16 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple 
     17 * Place, Suite 330, Boston, MA 02111-1307 USA 
     18 */ 
     19 
    120#ifndef mycached_hh 
    221#define mycached_hh 
  • platform/mysql/mycached/trunk/mycached_as_udf.cc

    r34992 r35004  
     1/* 
     2 * mycached - memcached protocol handler for mysqld 
     3 *  
     4 * Copyright (C) 2009 Cybozu Labs, Inc. 
     5 *  
     6 * This program is free software; you can redistribute it and/or modify it under 
     7 * the terms of the GNU General Public License as published by the FreeSoftware 
     8 * Foundation; either version 2 of the License. 
     9 *  
     10 * This program is distributed in the hope that it will be useful, but WITHOUT 
     11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
     12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 
     13 * details. 
     14 *  
     15 * You should have received a copy of the GNU General Public License along with 
     16 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple 
     17 * Place, Suite 330, Boston, MA 02111-1307 USA 
     18 */ 
     19 
    120#include "mycached.hh" 
    221#include "mycached.cc"