タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

curlに関するshiumachiのブックマーク (2)

  • OSS開発勉強会-08 (前半) - KaiGaiの俺メモ

    ひそやか〜に続けている社内勉強会のメモ。 (特に今回は資料もなかったので) libcurl について このライブラリを使うと、HTTP(s)ほかプロトコルでURLにアクセスする プログラムを、非常に簡単に書く事ができる。 ソースコードはこちらのリポジトリ参照 http://github.com/shiumachi/curl_tut ポイントとなるコードは以下の通り まず、ライブラリ自体を初期化する。 この関数はThread-Safeではないので、Apacheのモジュールから使うのであれば、 child_initフックなどの初期化フェーズ(まだスレッドが作られていない)で 呼ぶ必要があるだろう。 curl_global_init(CURL_GLOBAL_SSL);そして、これと対になるのが curl_global_cleanup();とりあえず、グローバルな初期化と終了処理はこの2つ。 そし

    OSS開発勉強会-08 (前半) - KaiGaiの俺メモ
  • curl

    What is curl used for? curl is used in command lines or scripts to transfer data. curl is also libcurl, used in cars, television sets, routers, printers, audio equipment, mobile phones, tablets, medical devices, settop boxes, computer games, media players and is the Internet transfer engine for countless software applications in over twenty billion installations. curl is used daily by virtually ev

    shiumachi
    shiumachi 2010/10/14
    "curl is a command line tool for transferring data with URL syntax"
  • 1