AP_DECLARE_NONSTD

apache_reading @ ウィキ内検索 / 「AP_DECLARE_NONSTD」で検索した結果

検索 :
  • AP_DECLARE_NONSTD
    ... # define AP_DECLARE_NONSTD(type) type APIではあるけれど、間接的にしか呼ばれない?
  • httpd.h
    ... type AP_DECLARE_NONSTD(type) type # define AP_DECLARE_NONSTD(type) type APIではあるけれど、間接的にしか呼ばれない DECLINED, DONE, OK #define DECLINED -1 #define DONE -2 #define OK 0 DECLINED...対象のモジュールは使用不能 DONE...対象のモジュールは終了し、使用不能 OK...モジュールはこのステージのハンドルを完了した
  • AP_DECLARE
    include/httpd.h他 記述 # define AP_DECLARE(type) type 概要 typeを返すだけの空のdefine。それがAPIであることを表わしている
  • ap_rputs
    include/http_protocol.h /** * Output a string for the current request * @param str The string to output * @param r The current request * @return The number of bytes sent */ AP_DECLARE(int) ap_rputs(const char *str, request_rec *r); str ... 表示する(標準入力に返す)文字列 r ... 該当するrequest_rec server/protocol.c AP_DECLARE(int) ap_rputs(const char *str, request_rec *r) { apr_size_t len; i...
  • apr_file_io.h
    /** * Open the specified file. * @param newf The opened file descriptor. * @param fname The full path to the file (using / on all systems) * @param flag Or ed value of * PRE * APR_READ open for reading * APR_WRITE open for writing * APR_CREATE create the file if not there * APR_APPEND file ptr is set to end prior to ...
  • apr_brigade_puts
    srclib/apr-util/include/apr_buckets.h /** * This function writes a string into a bucket brigade. * @param bb The bucket brigade to add to * @param flush The flush function to use if the brigade is full * @param ctx The structure to pass to the flush function * @param str The string to add * @return APR_SUCCESS or error code */ APU_DECLARE(apr_status_t) apr_brigade_puts(apr_bucket_brigade ...
  • apr_pool_t
    srclib/apr/memory/*/apr_pools.c 記述 struct apr_pool_t { apr_pool_t *parent; apr_pool_t *child; apr_pool_t *sibling; apr_pool_t **ref; cleanup_t *cleanups; cleanup_t *free_cleanups; apr_allocator_t *allocator; struct process_chain *subprocesses; apr_abortfunc_t abort_fn; apr_hash_t *use...
  • ap_fwrite
    include/util_filter.h /** * Write a buffer for the current filter, buffering if possible. * @param f the filter we are writing to * @param bb The brigade to buffer into * @param data The data to write * @param nbyte The number of bytes in the data */ #define ap_fwrite(f, bb, data, nbyte) \ apr_brigade_write(bb, ap_filter_flush, f, data, nbyte)
  • buffer_output(protocol.c)
    server/protocol.c static apr_status_t buffer_output(request_rec *r, const char *str, apr_size_t len) { conn_rec *c = r- connection; ap_filter_t *f; old_write_filter_ctx *ctx; if (len == 0) return APR_SUCCESS; /* future optimization record some flags in the request_rec to * say whether we ve added our filter, and whether it is first. ...
  • DECLINE
    include/httpd.h 記述 #define DECLINED -1/** Module declines to handle */ ハンドルが拒否された
  • apache2.xのモジュール作成時のgdb debug
    1. apacheをdebugでコンパイル CFLAGS="-O2 -g" ./configure --prefix=$HOME$APACHE$ 2. httpd.confのListenを一般ユーザで起動可能に変更 Listen 80 - Listen 8080などに 3. gdb起動 gdb httpd (中略) (gdb) b helloworld_handler // breakpointを設定 Function "helloworld_handler" not defined. Make breakpoint pending on future shared library load? (y or [n]) y // moduleがloadされてないからシンボルは見えないが設定しておく Breakpoint 1...
  • DONE
    include/httpd.h 記述 #define DONE -2/** Module has served the response completely * - it s safe to die() with no more output */ 安全に終了しており、これ以上なにも出力しない
  • プラグイン/ニュース
    ニュース @wikiのwikiモードでは #news(興味のある単語) と入力することで、あるキーワードに関連するニュース一覧を表示することができます 詳しくはこちらをご覧ください。 =>http //atwiki.jp/guide/17_174_ja.html たとえば、#news(wiki)と入力すると以下のように表示されます。 ドラゴンクエストけしケシ攻略Wiki - Gamerch(ゲーマチ) マニュアル作成に便利な「画像編集」機能を提供開始! - ナレッジ共有・社内wikiツール「NotePM」 - 川崎経済新聞 【グランサガ】リセマラ当たりランキング - グランサガ攻略wiki - Gamerch(ゲーマチ) 【ウマ娘】隠しイベントの発生条件と効果まとめ - Gamerch(ゲーマチ) 「Wiki」創設者のPC 競売に - auone....
  • Apache 2.0におけるmodの動的生成(テスト編)
    テンプレート生成 $ apxs -g -n helloworld Makefile helloworld.c helloworld.hなどが生成される httpd.confの修正 LoadModule helloworld_module modules/mod_helloworld.so Location /hello SetHandler helloworld /Location 参考 Apacheモジュールプログラミングガイド http //www.amazon.co.jp/dp/4774117994/
  • プラグイン/アーカイブ
    アーカイブ @wikiのwikiモードでは #archive_log() と入力することで、特定のウェブページを保存しておくことができます。 詳しくはこちらをご覧ください。 =>http //atwiki.jp/guide/25_171_ja.html たとえば、#archive_log()と入力すると以下のように表示されます。 保存したいURLとサイト名を入力して"アーカイブログ"をクリックしてみよう サイト名 URL
  • プラグイン/編集履歴
    更新履歴 @wikiのwikiモードでは #recent(数字) と入力することで、wikiのページ更新履歴を表示することができます。 詳しくはこちらをご覧ください。 =>http //atwiki.jp/guide/17_117_ja.html たとえば、#recent(20)と入力すると以下のように表示されます。 取得中です。
  • まとめサイト作成支援ツール
    まとめサイト作成支援ツールについて @wikiにはまとめサイト作成を支援するツールがあります。 また、 #matome_list と入力することで、注目の掲示板が一覧表示されます。 利用例)#matome_listと入力すると下記のように表示されます #matome_list
  • OK
    include/httpd.h 記述 #define OK 0 ハンドラーが正常に終了したことを表す
  • プラグイン/動画(Youtube)
    動画(youtube) @wikiのwikiモードでは #video(動画のURL) と入力することで、動画を貼り付けることが出来ます。 詳しくはこちらをご覧ください。 =>http //atwiki.jp/guide/17_209_ja.html また動画のURLはYoutubeのURLをご利用ください。 =>http //www.youtube.com/ たとえば、#video(http //youtube.com/watch?v=kTV1CcS53JQ)と入力すると以下のように表示されます。
  • プラグイン
    @wikiにはいくつかの便利なプラグインがあります。 アーカイブ コメント ニュース 動画(Youtube) 編集履歴 関連ブログ これ以外のプラグインについては@wikiガイドをご覧ください = http //atwiki.jp/guide/
  • プラグイン/コメント
    コメントプラグイン @wikiのwikiモードでは #comment() と入力することでコメントフォームを簡単に作成することができます。 詳しくはこちらをご覧ください。 =>http //atwiki.jp/guide/17_60_ja.html たとえば、#comment() と入力すると以下のように表示されます。 名前 コメント
  • プラグイン/関連ブログ
    関連ブログ @wikiのwikiモードでは #bf(興味のある単語) と入力することで、あるキーワードに関連するブログ一覧を表示することができます 詳しくはこちらをご覧ください。 =>http //atwiki.jp/guide/17_161_ja.html たとえば、#bf(ゲーム)と入力すると以下のように表示されます。 #bf
  • @wiki全体から「AP_DECLARE_NONSTD」で調べる

更新順にページ一覧表示 | 作成順にページ一覧表示 | ページ名順にページ一覧表示 | wiki内検索