Skip to content

Commit cc3b13f

Browse files
committed
update email
1 parent 3b05757 commit cc3b13f

File tree

10 files changed

+14
-15
lines changed

10 files changed

+14
-15
lines changed

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (c) 2003, Lars Nilsson, <lars@quantumchamaeleon.com>
2-
Copyright (c) 2009, ygrek, <ygrek@autistici.org>
2+
Copyright (c) 2009, <root@ygrek.org>
33

44
Permission is hereby granted, free of charge, to any person obtaining
55
a copy of this software and associated documentation files (the

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ make
3131
[`curl.mli`](./curl.mli) accordingly.
3232

3333
----
34-
ygrek at autistici dot org
34+
root@ygrek.org

curl-helper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*** curl-helper.c
33
***
44
*** Copyright (c) 2003-2008, Lars Nilsson, <lars@quantumchamaeleon.com>
5-
*** Copyright (c) 2009, ygrek, <ygrek@autistici.org>
5+
*** Copyright (c) 2009, <root@ygrek.org>
66
***/
77

88
#ifndef CAML_NAME_SPACE

curl.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* curl.ml
33
*
44
* Copyright (c) 2003-2008, Lars Nilsson, <lars@quantumchamaeleon.com>
5-
* Copyright (c) 2009, ygrek, <ygrek@autistici.org>
5+
* Copyright (c) 2009, <root@ygrek.org>
66
*)
77

88
type t

curl.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* curl.mli
33
*
44
* Copyright (c) 2003-2008, Lars Nilsson, <lars@quantumchamaeleon.com>
5-
* Copyright (c) 2009, ygrek, <ygrek@autistici.org>
5+
* Copyright (c) 2009, <root@ygrek.org>
66
*)
77

88
(** libcurl wrapper *)

curl.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ opam-version: "2.0"
33
synopsis: "Bindings to libcurl"
44
description:
55
"libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library wrap easy synchronous API (Curl) and synchronous parallel and generic asynchronous API (Curl.Multi). For the Lwt-enabled asynchronous interface (Curl_lwt) see curl_lwt package."
6-
maintainer: ["ygrek@autistici.org" "Antonin Décimo <antonin@tarides.com>"]
6+
maintainer: ["root@ygrek.org" "Antonin Décimo <antonin@tarides.com>"]
77
authors: ["Lars Nilsson" "ygrek"]
88
license: "MIT"
99
tags: ["org:ygrek" "clib:curl"]

curl_lwt.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ opam-version: "2.0"
33
synopsis: "Bindings to libcurl (lwt variant)"
44
description:
55
"libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library provides an Lwt-enabled asynchronous interface (Curl_lwt)."
6-
maintainer: ["ygrek@autistici.org" "Antonin Décimo <antonin@tarides.com>"]
6+
maintainer: ["root@ygrek.org" "Antonin Décimo <antonin@tarides.com>"]
77
authors: ["Lars Nilsson" "ygrek"]
88
license: "MIT"
99
tags: ["org:ygrek" "clib:curl"]

dune-project

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
(generate_opam_files true)
66

77
(maintainers
8-
"ygrek@autistici.org"
8+
"root@ygrek.org"
99
"Antonin Décimo <antonin@tarides.com>")
1010
(authors
1111
"Lars Nilsson"
@@ -25,7 +25,7 @@
2525
(ocaml (>= "4.11"))
2626
(dune-configurator (>= "3.18.1"))
2727
base-bigarray
28-
base-unix
28+
base-unix
2929
conf-libcurl)
3030
(conflicts
3131
(ocurl (<> "transition")))

examples/omulti.ml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(*
22
* omulti.ml
33
*
4-
* Copyright (c) 2009, ygrek, <ygrek@autistici.org>
4+
* Copyright (c) 2009, <root@ygrek.org>
55
*)
66

77
module M = Curl.Multi
@@ -94,14 +94,14 @@ let input_lines file =
9494
let () =
9595
let module A = Array in
9696
let func = ref None in
97-
let urls =
97+
let urls =
9898
let urls = ref [] in
9999
let n = ref 10 in
100-
let args = Arg.align
100+
let args = Arg.align
101101
["-n",Arg.Set_int n,"<N> ";
102102
"-i",Arg.String (fun s -> urls := input_lines s @ !urls),"<file> read urls from file";
103103
"-l",Arg.String (fun s -> urls := s :: !urls),"<url> fetch url";
104-
"-m",Arg.String (function
104+
"-m",Arg.String (function
105105
| "wait" -> func := Some loop_wait
106106
| "event" -> func := Some loop_async
107107
| "select" -> func := Some loop_select
@@ -140,4 +140,3 @@ let () =
140140
match !func with
141141
| None -> test loop_wait; test loop_select; test loop_async
142142
| Some f -> test f
143-

ocurl.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ synopsis:
55
"This is a transition package, ocurl is now named curl. Use the curl package instead"
66
description:
77
"This is a transition package, ocurl is now named curl. Use the curl package instead."
8-
maintainer: ["ygrek@autistici.org" "Antonin Décimo <antonin@tarides.com>"]
8+
maintainer: ["root@ygrek.org" "Antonin Décimo <antonin@tarides.com>"]
99
authors: ["Lars Nilsson" "ygrek"]
1010
license: "MIT"
1111
homepage: "https://ygrek.org/p/ocurl"

0 commit comments

Comments
 (0)